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
Follow up from #1080 pdrive should be p:/ for windows (including slash), for observations.py and interpolate_grid2bnd.py. Although both now seem to work somehow. On linux, this is not required. The windows behaviour is to me unexpected and inconvenient, but it seems to be intended: https://stackoverflow.com/questions/23955968/windows-path-with-no-slash-after-drive-letter-and-colon-what-does-it-point-to
p:/
Behaviour on windows (excludes slash):
>>> from pathlib import Path; print(Path("p:","aa")) p:aa
Behaviour on linux (includes slash):
>>> from pathlib import Path; print(Path("/p","aa")) /p/aa
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Follow up from #1080
pdrive should be
p:/
for windows (including slash), for observations.py and interpolate_grid2bnd.py. Although both now seem to work somehow. On linux, this is not required. The windows behaviour is to me unexpected and inconvenient, but it seems to be intended: https://stackoverflow.com/questions/23955968/windows-path-with-no-slash-after-drive-letter-and-colon-what-does-it-point-toBehaviour on windows (excludes slash):
Behaviour on linux (includes slash):
The text was updated successfully, but these errors were encountered: