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
The current code makes extensive use of os.path calls for filename/path manipulation. The more modern paradigm is to use pathlib.Path objects instead. It would be a straightforward, if tedious, block of work to make the switch.
The current code makes extensive use of
os.pathcalls for filename/path manipulation. The more modern paradigm is to usepathlib.Pathobjects instead. It would be a straightforward, if tedious, block of work to make the switch.