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
A common reading error occurs when having multiple empty lines at the end of a csv file. tableschema.exceptions.CastError: Row length 0 doesn't match fields count 3
tableschema is expecting 3 columns but as an empty line doesn't have any column separators, there are none.
This could be easily caught by cleaning the csv files from any empty lines while reading
The text was updated successfully, but these errors were encountered:
A common reading error occurs when having multiple empty lines at the end of a csv file.
tableschema.exceptions.CastError: Row length 0 doesn't match fields count 3
tableschema
is expecting 3 columns but as an empty line doesn't have any column separators, there are none.This could be easily caught by cleaning the csv files from any empty lines while reading
The text was updated successfully, but these errors were encountered: