summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-25 15:52:28 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-25 15:52:28 +0200
commit27057a601c43ab5a6dcaa5b396c6b3d891c921b9 (patch)
tree576348f7c7f25b6a6c7283be29a23aa08e6d1688 /app.py
parent84ff4aa8fc7714b5841097e0dd800085982321e4 (diff)
Sorting out import situation and making enum names for tiles for readability.
Diffstat (limited to 'app.py')
-rw-r--r--app.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/app.py b/app.py
index 3f77341..70dbd03 100644
--- a/app.py
+++ b/app.py
@@ -1,9 +1,8 @@
""" app.py - pääohjelma """
-from board.board import Board, Level
-from tui.tui import Tui
-from game.game import Game
-#from bots.idiot import IdiotBot
-from bots.bad import BadBot
+from board import Board, Level
+from tui import Tui
+from game import Game
+from bots import BadBot
# pylint: disable = too-few-public-methods
class App: