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
In https://github.com/gitpython-developers/GitPython/blob/main/git/repo/base.py#L285 working_dir is never assigned to None, which means it type shouldn't be marked as Optional.
working_dir
None
Optional
The text was updated successfully, but these errors were encountered:
What happens when the repository is bare? Then by definition it has no working dir, and I don't think working_dir is populated anyway.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In https://github.com/gitpython-developers/GitPython/blob/main/git/repo/base.py#L285
working_dir
is never assigned toNone
, which means it type shouldn't be marked asOptional
.The text was updated successfully, but these errors were encountered: