Remove uses of the 'future' py2->3 module
This is no longer needed, now that we are Py3.7+ only. One layer of indirection removed, and one less dependency.
This commit is contained in:
parent
edbe583959
commit
bd33886cc0
16 changed files with 26 additions and 44 deletions
|
|
@ -37,7 +37,6 @@ from evennia.commands.cmdsethandler import CmdSetHandler
|
|||
from evennia.utils.optionhandler import OptionHandler
|
||||
|
||||
from django.utils.translation import ugettext as _
|
||||
from future.utils import with_metaclass
|
||||
from random import getrandbits
|
||||
|
||||
__all__ = ("DefaultAccount",)
|
||||
|
|
@ -113,7 +112,7 @@ class AccountSessionHandler(object):
|
|||
return len(self.get())
|
||||
|
||||
|
||||
class DefaultAccount(with_metaclass(TypeclassBase, AccountDB)):
|
||||
class DefaultAccount(AccountDB, metaclass=TypeclassBase):
|
||||
"""
|
||||
This is the base Typeclass for all Accounts. Accounts represent
|
||||
the person playing the game and tracks account info, password
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue