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
Replace str paths with pathlib.Path. Subclass pathlib.Path so absolute and relative paths can be tracked by type hinting:
str
pathlib.Path
class AbsPath(pathlib.Path): pass class RelPath(pathlib.Path): pass
The text was updated successfully, but these errors were encountered:
gjost
No branches or pull requests
Replace
str
paths withpathlib.Path
. Subclasspathlib.Path
so absolute and relative paths can be tracked by type hinting:The text was updated successfully, but these errors were encountered: