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

@ -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]

View file

@ -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