Use isort, run format on code
This commit is contained in:
parent
617bff3c82
commit
eafe390db4
38 changed files with 214 additions and 43 deletions
|
|
@ -38,7 +38,13 @@ from evennia.typeclasses.attributes import ModelAttributeBackend, NickHandler
|
|||
from evennia.typeclasses.models import TypeclassBase
|
||||
from evennia.utils import class_from_module, create, logger
|
||||
from evennia.utils.optionhandler import OptionHandler
|
||||
from evennia.utils.utils import is_iter, lazy_property, make_iter, to_str, variable_from_module
|
||||
from evennia.utils.utils import (
|
||||
is_iter,
|
||||
lazy_property,
|
||||
make_iter,
|
||||
to_str,
|
||||
variable_from_module,
|
||||
)
|
||||
|
||||
__all__ = ("DefaultAccount", "DefaultGuest")
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,11 @@ from unittest import TestCase
|
|||
from django.test import override_settings
|
||||
from mock import MagicMock, Mock, patch
|
||||
|
||||
from evennia.accounts.accounts import AccountSessionHandler, DefaultAccount, DefaultGuest
|
||||
from evennia.accounts.accounts import (
|
||||
AccountSessionHandler,
|
||||
DefaultAccount,
|
||||
DefaultGuest,
|
||||
)
|
||||
from evennia.utils import create
|
||||
from evennia.utils.test_resources import BaseEvenniaTest
|
||||
from evennia.utils.utils import uses_database
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue