Format code imports
This commit is contained in:
parent
92834aacd0
commit
a461a97576
361 changed files with 1019 additions and 754 deletions
|
|
@ -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 = """
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ creation commands.
|
|||
|
||||
"""
|
||||
from evennia.objects.objects import DefaultCharacter
|
||||
|
||||
from .objects import ObjectParent
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ for allowing Characters to traverse the exit to its destination.
|
|||
|
||||
"""
|
||||
from evennia.objects.objects import DefaultExit
|
||||
|
||||
from .objects import ObjectParent
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue