disabled NiceGUI auto-reload so shutdown button should work properly

This commit is contained in:
2023-12-11 14:08:35 -05:00
parent 8d907a67c0
commit 8122bb455b

View File

@@ -99,7 +99,7 @@ def nicegui_ui() -> None:
.bind_value_to(timer, "interval")
.bind_value_to(label, "text")
)
ui.run()
ui.run(reload=False)
def main() -> None: