Files
textual/tests/deadlock.py
Will McGugan 16f80ad280 error message
2024-06-13 16:01:45 +01:00

22 lines
323 B
Python

"""
Called by test_pipe.py
"""
from textual.app import App
from textual.binding import Binding
from textual.widgets import Footer
class MyApp(App[None]):
BINDINGS = [
Binding(key="q", action="quit", description="Quit the app"),
]
def compose(self):
yield Footer()
app = MyApp()
app.run()