We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got this error:
⇒ fbs run Traceback (most recent call last): File "/Users/davidbourgeois/src/hidpytoy/src/main/python/main.py", line 6, in <module> from fbs_runtime.application_context import ApplicationContext ImportError: cannot import name 'ApplicationContext'
and changed this to get it working:
diff --git a/src/main/python/main.py b/src/main/python/main.py index ac8d203..c0496fd 100644 --- a/src/main/python/main.py +++ b/src/main/python/main.py @@ -3,7 +3,7 @@ # 2019 Tod E. Kurt, todbot.com # -from fbs_runtime.application_context import ApplicationContext +from fbs_runtime.application_context.PyQt5 import ApplicationContext from PyQt5 import QtCore, uic, QtWidgets import sys
The text was updated successfully, but these errors were encountered:
This has been merged so it can be closed.
Sorry, something went wrong.
Thanks!
No branches or pull requests
I got this error:
and changed this to get it working:
The text was updated successfully, but these errors were encountered: