mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 15:26:30 +01:00
PEP8 cleanup of the entire codebase. Unchanged are many cases of too-long lines, partly because of the rewrite they would require but also because splitting many lines up would make the code harder to read. Also the third-party libraries (idmapper, prettytable etc) were not cleaned.
This commit is contained in:
parent
30b7d2a405
commit
1ae17bcbe4
154 changed files with 5613 additions and 4054 deletions
|
|
@ -26,10 +26,9 @@ Common examples of uses of Scripts:
|
|||
"""
|
||||
from django.conf import settings
|
||||
from django.db import models
|
||||
from django.db.models.signals import post_init, pre_delete
|
||||
|
||||
from src.typeclasses.models import Attribute, TypedObject, TagHandler, AttributeHandler#, AliasHandler, NickHandler
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
from src.typeclasses.models import (TypedObject, TagHandler,
|
||||
AttributeHandler)
|
||||
from src.scripts.manager import ScriptManager
|
||||
|
||||
__all__ = ("ScriptDB",)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue