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
You don’t want __pycache__ in your repo. That’s just the compiled version of the Python code, which may not be appropriate for the user’s system.
__pycache__
diff --git a/.gitignore b/.gitignore index 3d9a6f3..0065e7c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +/__pycache__/ *.png *.PNG *.otf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You don’t want
__pycache__
in your repo. That’s just the compiled version of the Python code, which may not be appropriate for the user’s system.The text was updated successfully, but these errors were encountered: