Fixed data_table example app - actually run it

This commit is contained in:
hfarooq
2022-10-25 21:03:51 +00:00
parent 93e75f3f0e
commit 0963103db8

View File

@@ -26,4 +26,6 @@ class TableApp(App):
table.add_rows(rows) table.add_rows(rows)
app = TableApp() if __name__ == "__main__":
app = TableApp()
app.run()