mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
22 lines
323 B
Python
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()
|