Breaking change in 24.080.2202
Deprecation Notice
This page describes features that have been removed or replaced in Luxonis Hub. Functionality may be limited and only available to Hub Original customers. Please refer to the up-to-date guides to provision devices, manage fleets, and deploy applications.
24.080.2202 introduces a breaking change in the way applications are started.You are required to add the following code to your application as otherwise it would just exit without starting the application:Python
1if __name__ == "__main__":
2 app = Application()
3 app.run()