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
As commented on in #52 , many of the definitions in __init__.py are public though may not be intended to be supported as public in the long term.
__init__.py
Some examples are g_runtime, setup_two_streams, and even gui.
g_runtime
setup_two_streams
gui
We could consider moving these definitions to a private module (e.g. _widget.py) then only importing the ones we want to make public in __init__.py.
_widget.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As commented on in #52 , many of the definitions in
__init__.py
are public though may not be intended to be supported as public in the long term.Some examples are
g_runtime
,setup_two_streams
, and evengui
.We could consider moving these definitions to a private module (e.g.
_widget.py
) then only importing the ones we want to make public in__init__.py
.The text was updated successfully, but these errors were encountered: