Format code imports

This commit is contained in:
Griatch 2022-11-10 22:21:12 +01:00
parent 92834aacd0
commit a461a97576
361 changed files with 1019 additions and 754 deletions

View file

@ -21,6 +21,7 @@ of the screen is done by the unlogged-in "look" command.
"""
from django.conf import settings
from evennia import utils
CONNECTION_SCREEN = """

View file

@ -8,6 +8,7 @@ creation commands.
"""
from evennia.objects.objects import DefaultCharacter
from .objects import ObjectParent

View file

@ -7,6 +7,7 @@ for allowing Characters to traverse the exit to its destination.
"""
from evennia.objects.objects import DefaultExit
from .objects import ObjectParent

View file

@ -6,6 +6,7 @@ Rooms are simple containers that has no location of their own.
"""
from evennia.objects.objects import DefaultRoom
from .objects import ObjectParent

View file

@ -8,6 +8,7 @@ The main web/urls.py includes these routes for all urls starting with `admin/`
from django.urls import path
from evennia.web.admin.urls import urlpatterns as evennia_admin_urlpatterns
# add patterns here

View file

@ -12,7 +12,7 @@ should modify urls.py in those sub directories.
Search the Django documentation for "URL dispatcher" for more help.
"""
from django.urls import path, include
from django.urls import include, path
# default evennia patterns
from evennia.web.urls import urlpatterns as evennia_default_urlpatterns

View file

@ -7,6 +7,7 @@ The main web/urls.py includes these routes for all urls starting with `webclient
"""
from django.urls import path
from evennia.web.webclient.urls import urlpatterns as evennia_webclient_urlpatterns
# add patterns here

View file

@ -7,6 +7,7 @@ so it can reroute to all website pages.
"""
from django.urls import path
from evennia.web.website.urls import urlpatterns as evennia_website_urlpatterns
# add patterns here