From 8ce78103d01f01543eb3b739b399fc239ae44827 Mon Sep 17 00:00:00 2001 From: anthony-melin Date: Sun, 26 Jul 2026 15:38:04 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20code=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/elironwars/app.py | 1 + tests/test_entrypoints.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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):