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
i = path.name.rfind(".") in utils.py brings up " str has no attribute 'name' " errors when trying to upload files.
Also, files wouldn't upload unless i added this line of code in api.py after with open(local_path, mode="rb") as f: in the upload_files function: path_on_server = str(path_on_server).replace("\\","/")
The text was updated successfully, but these errors were encountered:
i = path.name.rfind(".")
in utils.py brings up " str has no attribute 'name' " errors when trying to upload files.Also, files wouldn't upload unless i added this line of code in api.py after
with open(local_path, mode="rb") as f:
in the upload_files function:path_on_server = str(path_on_server).replace("\\","/")
The text was updated successfully, but these errors were encountered: