This commit is contained in:
Will McGugan
2021-08-14 17:07:23 +01:00
parent 611f089d9c
commit 9d71d3b586

View File

@@ -0,0 +1,9 @@
from textual.app import App
class Quiter(App):
async def on_load(self):
await self.bind("q", "quit")
Quiter.run()