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
Throughout your code, you use string manipulation to deal with creating and inspecting pathnames. This is dangerous as you move your code across platforms, where certain assumptions don't hold. A better approach is to use https://docs.python.org/3/library/pathlib.html or similar in Python to handle these subtle differences.
The text was updated successfully, but these errors were encountered:
Throughout your code, you use string manipulation to deal with creating and inspecting pathnames. This is dangerous as you move your code across platforms, where certain assumptions don't hold. A better approach is to use https://docs.python.org/3/library/pathlib.html or similar in Python to handle these subtle differences.
The text was updated successfully, but these errors were encountered: