better name

This commit is contained in:
Will McGugan
2021-07-10 21:36:48 +01:00
parent 1fb2c358fd
commit 2802ce0a29

View File

@@ -15,7 +15,7 @@ except ImportError:
font = Figlet(font="small") font = Figlet(font="small")
class GridTest(App): class CalculatorApp(App):
async def on_load(self, event: events.Load) -> None: async def on_load(self, event: events.Load) -> None:
await self.bind("q,ctrl+c", "quit", "Quit") await self.bind("q,ctrl+c", "quit", "Quit")
@@ -54,4 +54,4 @@ class GridTest(App):
) )
GridTest.run(title="Calculator Test") CalculatorApp.run(title="Calculator Test")