You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment there is a mix of use of both os.path and pathlib.Path which is really annoying to cast around interally.
The goal is to only use pathlib interally and convert all path inputs to pathlib. Do we also want to return pathlib objects instead of strings? cc @dergraaf
The text was updated successfully, but these errors were encountered:
This is actually a difficult thing to implement, since an empty path "" cannot be stored in Path("") -> Path("."). This is particularly an issue for PathOption, which cannot be backwards compatible this way. Returning Path() from repopath() and localpath() is also not backwards compatible.
At the moment there is a mix of use of both
os.path
andpathlib.Path
which is really annoying to cast around interally.The goal is to only use pathlib interally and convert all path inputs to pathlib. Do we also want to return pathlib objects instead of strings? cc @dergraaf
The text was updated successfully, but these errors were encountered: