aboutsummaryrefslogtreecommitdiff
path: root/kennel/engine/systems/world.py
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2024-09-02 23:59:48 -0700
committerElizabeth Hunt <elizabeth@simponic.xyz>2024-09-02 23:59:48 -0700
commitc39367ac7e163395ae726bd169926004d4d99d67 (patch)
treec551f15f3c6475638239b7ccf1d6992f375e9a57 /kennel/engine/systems/world.py
parent9f5e81327be33489d9bb912de503cd01d6ba7dca (diff)
downloadkennel.hatecomputers.club-c39367ac7e163395ae726bd169926004d4d99d67.tar.gz
kennel.hatecomputers.club-c39367ac7e163395ae726bd169926004d4d99d67.zip
fix CI
Diffstat (limited to 'kennel/engine/systems/world.py')
-rw-r--r--kennel/engine/systems/world.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kennel/engine/systems/world.py b/kennel/engine/systems/world.py
index 396e7cb..b74816f 100644
--- a/kennel/engine/systems/world.py
+++ b/kennel/engine/systems/world.py
@@ -1,7 +1,7 @@
-from kennel.engine.systems.system import System, SystemType
-from kennel.engine.entities.entity import EntityManager
-from kennel.engine.components.component import ComponentType
from kennel.app import logger
+from kennel.engine.components.component import ComponentType
+from kennel.engine.entities.entity import EntityManager
+from kennel.engine.systems.system import System, SystemType
class WorldSystem(System):