This commit is contained in:
Isaak Buslovich 2023-11-20 20:06:55 +01:00
parent a57078744d
commit b1e7877bf8

View File

@ -24,4 +24,7 @@ class SimpleCLITool(App):
# Dock the TabbedContent into the app's view # Dock the TabbedContent into the app's view
await self.view.dock(tabbed_content) await self.view.dock(tabbed_content)
SimpleCLITool.run() # Create an instance of the app and run it
if __name__ == "__main__":
app = SimpleCLITool()
app.run()