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 error message for data_push when a file doesn't exist isn't very clear. I get the same error when a file doesn't exist as when I try to push a directory (see #2). The error is:
ValueError: local_path must be a file.
It would be nice if the error message indicated that the file does not exist.
The text was updated successfully, but these errors were encountered:
>>> p.data_add('/tmp/does_not_exist.csv')
ValueError: Please specify a remote URI or a local file or folder path that exists.
>>> p.data_pull('/tmp/does_not_exist.csv')
kitools.exceptions.KiProjectResourceNotFoundError: No project resource found matching: /tmp/does_not_exist.csv
>>> p.data_push('/tmp/does_not_exist.csv')
kitools.exceptions.KiProjectResourceNotFoundError: No project resource found matching: /tmp/does_not_exist.csv
The error message for
data_push
when a file doesn't exist isn't very clear. I get the same error when a file doesn't exist as when I try to push a directory (see #2). The error is:It would be nice if the error message indicated that the file does not exist.
The text was updated successfully, but these errors were encountered: