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 /tui/tui.py | |
parent | 84ff4aa8fc7714b5841097e0dd800085982321e4 (diff) |
Sorting out import situation and making enum names for tiles for readability.
Diffstat (limited to 'tui/tui.py')
-rw-r--r-- | tui/tui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,8 +2,8 @@ # pylint: disable = multiple-imports import termios, fcntl, sys, os from time import sleep -from tui.static import Action, ActionKeys, TileTypes -from tui.ansi import Ansi +from .static import Action, ActionKeys, TileTypes +from .ansi import Ansi class Tui(): |