Merge pull request #1019 from typon/fix-datatable-example

Fixed data_table example app - actually run it
This commit is contained in:
Dave Pearson
2022-10-29 08:33:36 +01:00
committed by GitHub

View File

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