Skip to content

Commit fb42988

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d69f904 commit fb42988

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tcod/ecs/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Entity:
6666
>>> other_entity = registry["other"]
6767
""" # Changes here should be reflected in conftest.py
6868

69-
__slots__ = ("registry", "uid", "__weakref__")
69+
__slots__ = ("__weakref__", "registry", "uid")
7070

7171
registry: Final[Registry] # type:ignore[misc] # https://github.com/python/mypy/issues/5774
7272
"""The :any:`Registry` this entity belongs to."""

0 commit comments

Comments
 (0)