telemetry.telemetry_app

Docstring for telemetry.telemetry_app

This file is the main entry point for the telemetry application. The main() function instantiates the GUI, and runs th main loop.

 1"""
 2Docstring for telemetry.telemetry_app
 3
 4This file is the main entry point for the telemetry application.
 5The main() function instantiates the GUI, and runs th main loop.
 6"""
 7
 8from telemetry.gui.gui import TelemetryAppGUI
 9
10def main() -> None:
11    app = TelemetryAppGUI()
12    app.mainloop()
13
14if __name__ == '__main__':
15    main()
def main() -> None:
11def main() -> None:
12    app = TelemetryAppGUI()
13    app.mainloop()