Skip to content

Commit 60d4c72

Browse files
committed
TUI API changes
1 parent cb24dcf commit 60d4c72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/edge_containers_cli/cmds/monitor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
from edge_containers_cli.shell import ShellError
4141

4242

43-
class ConfirmScreen(ModalScreen[bool], inherit_bindings=False):
43+
class ConfirmScreen(ModalScreen[bool]):
4444
BINDINGS = [
4545
Binding("y,enter", "option_yes", "Yes"),
4646
Binding("n,c,escape", "option_cancel", "Cancel"),
@@ -73,7 +73,7 @@ def action_option_cancel(self) -> None:
7373
self.dismiss(False)
7474

7575

76-
class ErrorScreen(ModalScreen[bool], inherit_bindings=False):
76+
class ErrorScreen(ModalScreen[bool]):
7777
BINDINGS = [
7878
Binding("y,enter", "option_ok", "OK"),
7979
]
@@ -98,7 +98,7 @@ def action_option_ok(self) -> None:
9898
self.dismiss(True)
9999

100100

101-
class LogsScreen(ModalScreen, inherit_bindings=False):
101+
class LogsScreen(ModalScreen):
102102
"""Screen to display IOC logs."""
103103

104104
BINDINGS = [

0 commit comments

Comments
 (0)