Remove unused imports and clean up UI code
This commit is contained in:
parent
e90ecc60cb
commit
b2e80a8c07
|
|
@ -1,8 +1,6 @@
|
||||||
import time
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
from rich import console
|
from rich import console
|
||||||
from rich.live import Live
|
|
||||||
|
|
||||||
|
|
||||||
class UIInterface(ABC):
|
class UIInterface(ABC):
|
||||||
|
|
@ -148,7 +146,7 @@ class RichInterface(UIInterface):
|
||||||
self.console.show_cursor(True)
|
self.console.show_cursor(True)
|
||||||
exit(69)
|
exit(69)
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
if self.mode == "configure":
|
if self.mode == "configure":
|
||||||
self.configure_run_mode()
|
self.configure_run_mode()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue