Format code imports
This commit is contained in:
parent
92834aacd0
commit
a461a97576
361 changed files with 1019 additions and 754 deletions
|
|
@ -17,6 +17,7 @@ a certain object type.
|
|||
from ast import literal_eval
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
from evennia.utils import utils
|
||||
|
||||
_PERMISSION_HIERARCHY = [pe.lower() for pe in settings.PERMISSION_HIERARCHY]
|
||||
|
|
|
|||
|
|
@ -105,10 +105,12 @@ to any other identifier you can use.
|
|||
"""
|
||||
|
||||
import re
|
||||
|
||||
from django.conf import settings
|
||||
from evennia.utils import logger, utils
|
||||
from django.utils.translation import gettext as _
|
||||
|
||||
from evennia.utils import logger, utils
|
||||
|
||||
__all__ = ("LockHandler", "LockException")
|
||||
|
||||
WARNING_LOG = settings.LOCKWARNING_LOG_FILE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue