Format code imports
This commit is contained in:
parent
92834aacd0
commit
a461a97576
361 changed files with 1019 additions and 754 deletions
|
|
@ -6,9 +6,9 @@ from django.contrib.contenttypes.models import ContentType
|
|||
from django.urls import reverse
|
||||
from django.utils.text import slugify
|
||||
|
||||
from evennia.typeclasses.models import TypeclassBase
|
||||
from evennia.comms.models import ChannelDB
|
||||
from evennia.comms.managers import ChannelManager
|
||||
from evennia.comms.models import ChannelDB
|
||||
from evennia.typeclasses.models import TypeclassBase
|
||||
from evennia.utils import create, logger
|
||||
from evennia.utils.utils import make_iter
|
||||
|
||||
|
|
|
|||
|
|
@ -7,10 +7,11 @@ Comm system components.
|
|||
|
||||
from django.conf import settings
|
||||
from django.db.models import Q
|
||||
from evennia.typeclasses.managers import TypedObjectManager, TypeclassManager
|
||||
|
||||
from evennia.server import signals
|
||||
from evennia.typeclasses.managers import TypeclassManager, TypedObjectManager
|
||||
from evennia.utils import logger
|
||||
from evennia.utils.utils import dbref, make_iter, class_from_module
|
||||
from evennia.utils.utils import class_from_module, dbref, make_iter
|
||||
|
||||
_GA = object.__getattribute__
|
||||
_AccountDB = None
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
def convert_defaults(apps, schema_editor):
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# Generated by Django 1.11.2 on 2017-07-05 17:26
|
||||
|
||||
|
||||
from django.db import migrations, models, connection
|
||||
from django.db import connection, migrations, models
|
||||
|
||||
|
||||
def _table_exists(db_cursor, tablename):
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# Generated by Django 1.11.2 on 2017-07-06 20:41
|
||||
|
||||
|
||||
from django.db import migrations, connection
|
||||
from django.db import connection, migrations
|
||||
|
||||
|
||||
def _table_exists(db_cursor, tablename):
|
||||
|
|
|
|||
|
|
@ -19,14 +19,15 @@ necessary to easily be able to delete connections on the fly).
|
|||
|
||||
"""
|
||||
from django.conf import settings
|
||||
from django.utils import timezone
|
||||
from django.db import models
|
||||
from django.utils import timezone
|
||||
|
||||
from evennia.comms import managers
|
||||
from evennia.locks.lockhandler import LockHandler
|
||||
from evennia.typeclasses.models import TypedObject
|
||||
from evennia.typeclasses.tags import Tag, TagHandler
|
||||
from evennia.utils.idmapper.models import SharedMemoryModel
|
||||
from evennia.comms import managers
|
||||
from evennia.locks.lockhandler import LockHandler
|
||||
from evennia.utils.utils import crop, make_iter, lazy_property
|
||||
from evennia.utils.utils import crop, lazy_property, make_iter
|
||||
|
||||
__all__ = ("Msg", "TempMsg", "ChannelDB", "SubscriptionHandler")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue