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 handling directory paths, we have a mix of using os and Pathlib across the code base. os leads to some clunky code, an example is:
os
Pathlib
ROOT_DIR: str = os.path.join(os.path.abspath(__file__), "../../../configs")
We should default to Pathlib and update all os.path calls. See this thread for more context.
os.path
cc @joecummings, @ebsmothers
The text was updated successfully, but these errors were encountered:
RdoubleA
No branches or pull requests
For handling directory paths, we have a mix of using
os
andPathlib
across the code base.os
leads to some clunky code, an example is:We should default to Pathlib and update all
os.path
calls. See this thread for more context.cc @joecummings, @ebsmothers
The text was updated successfully, but these errors were encountered: