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
All of the path handling is done using strings and os.path this is prone to issues with running on different operating systems. Best practise for path-handling in Python is to use the inbuilt pathlib module.
The text was updated successfully, but these errors were encountered:
All of the path handling is done using strings and
os.path
this is prone to issues with running on different operating systems. Best practise for path-handling in Python is to use the inbuiltpathlib
module.The text was updated successfully, but these errors were encountered: