clean up bin/tabletracker a bit

This commit is contained in:
Brian S. Stephan 2020-02-08 19:36:32 -06:00
parent 3f9c1585fb
commit 152a84d873
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import npyscreen
from npytabletracker.ui import TableTrackerDisplay
class TableTrackerApplication(npyscreen.NPSAppManaged):
"""Combine the pieces of the application."""
@ -11,5 +12,6 @@ class TableTrackerApplication(npyscreen.NPSAppManaged):
"""Link necessary UI elements and state management and whatnot."""
self.addForm('MAIN', TableTrackerDisplay)
app = TableTrackerApplication()
app.run()