diff --git a/src/elironwars/app.py b/src/elironwars/app.py index 3c87863..63b8ee8 100644 --- a/src/elironwars/app.py +++ b/src/elironwars/app.py @@ -14,6 +14,7 @@ logger = logging.getLogger(__name__) # FIXME replace this global declaration UI: Any = None + def play_room(room: list[BaseMob], level: Level) -> int: if room is None: logger.info('Empty room') diff --git a/tests/test_entrypoints.py b/tests/test_entrypoints.py index a88d29d..f4c90ae 100644 --- a/tests/test_entrypoints.py +++ b/tests/test_entrypoints.py @@ -1,7 +1,7 @@ import unittest -from elironwars.entrypoints import Entrypoints from elironwars.console import ConsoleUi +from elironwars.entrypoints import Entrypoints class TestEntrypoints(unittest.TestCase):