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
For example, take this code:
#!/usr/bin/python3 import argparse from jupylet.app import App # app = App(width=512, height=512) parser = argparse.ArgumentParser(description='bla') args = parser.parse_args()
if I run:
$ ./p.py --help
I get:
usage: p.py [-h] bla optional arguments: -h, --help show this help message and exit
as expected.
But if I uncomment the line that instantiates app, I get:
app
$ ./p.py --help usage: p.py [-h] [--window {pyglet,glfw}] [--log_level {DEBUG,INFO,WARNING,ERROR}] optional arguments: -h, --help show this help message and exit --window {pyglet,glfw} Windowing library to use. --log_level {DEBUG,INFO,WARNING,ERROR} logging level.
So it makes it hard to import App outside of jupylet
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, take this code:
if I run:
I get:
as expected.
But if I uncomment the line that instantiates
app
, I get:So it makes it hard to import App outside of jupylet
Thanks
The text was updated successfully, but these errors were encountered: