diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-25 15:52:28 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-25 15:52:28 +0200 |
commit | 27057a601c43ab5a6dcaa5b396c6b3d891c921b9 (patch) | |
tree | 576348f7c7f25b6a6c7283be29a23aa08e6d1688 /bots/idiot.py | |
parent | 84ff4aa8fc7714b5841097e0dd800085982321e4 (diff) |
Sorting out import situation and making enum names for tiles for readability.
Diffstat (limited to 'bots/idiot.py')
-rw-r--r-- | bots/idiot.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bots/idiot.py b/bots/idiot.py index 200d690..933eee9 100644 --- a/bots/idiot.py +++ b/bots/idiot.py @@ -1,6 +1,7 @@ """ bots/idiot.py - se ensimmäinen botti joka tekee kaiken väärin """ -from bots.bot import Bot -from tui.static import Action +from tui import Action +from .bot import Bot + class IdiotBot(Bot): """ IdiotBot - merkistsee kaikki turvallisiksi avata """ # pylint: disable = too-few-public-methods |