Change loop() to wait()

This commit is contained in:
Hassan DRAGA 2022-10-31 10:06:27 -04:00 committed by GitHub
parent 636331ebca
commit c5de824b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ from webui import webui
MyWindow = webui.window()
MyWindow.bind('MyID', my_function)
MyWindow.show("MyHTML")
webui.loop()
webui.wait()
```
```sh