Files
textual/docs/examples/actions/q.py
Will McGugan a7ad371ce2 bindings
2021-08-07 09:22:33 +01:00

10 lines
137 B
Python

from textual.app import App
class Quiter(App):
async def on_load(self, event):
await self.bind("q", "quit")
Quiter.run()