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
os was imported for use of os.path.isfile(), however since we're using pathlib.Path objects, we can simply check with Path.is_file(), since this was the only reason os was imported, we can get rid of the import entirely
0 commit comments