mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 17:56:32 +01:00
Some minor cleanups.
This commit is contained in:
parent
5afb5c9638
commit
132eca7c8f
1 changed files with 3 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ from evennia.utils.utils import (
|
|||
class_from_module)
|
||||
from evennia.typeclasses.django_new_patch import patched_new
|
||||
|
||||
__all__ = ("Attribute", "TypeNick", "TypedObject")
|
||||
__all__ = ("TypedObject", )
|
||||
|
||||
TICKER_HANDLER = None
|
||||
|
||||
|
|
@ -84,7 +84,8 @@ def post_save(sender, instance, created, **kwargs):
|
|||
class TypeclassBase(SharedMemoryModelBase):
|
||||
"""
|
||||
Metaclass which should be set for the root of model proxies
|
||||
that don't define any new fields, like Object, Script etc.
|
||||
that don't define any new fields, like Object, Script etc. This
|
||||
is the basis for the typeclassing system.
|
||||
"""
|
||||
|
||||
def __new__(cls, name, bases, attrs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue