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
data/v2/csv/pokemon_moves.csv is no longer a well-formatted csv after the commit 8453c31.
This commit introduced a new column mastery but didn't add the extra comma for the rows where mastery is empty. This change made this csv file no longer a well-formatted csv and could cause many csv parser to fail.
Steps to Reproduce:
Download data/v2/csv/pokemon_moves.csv
Check the content of the file and find out that there are 7 columns in the header but many rows are missing a trailing comma and there are only 5 commas (for example the first row)
Expected Behavior
Either
Add the missing comma for all rows where mastery is empty
Remove mastery column
The text was updated successfully, but these errors were encountered:
Issue:
data/v2/csv/pokemon_moves.csv
is no longer a well-formatted csv after the commit 8453c31.This commit introduced a new column
mastery
but didn't add the extra comma for the rows wheremastery
is empty. This change made this csv file no longer a well-formatted csv and could cause many csv parser to fail.Steps to Reproduce:
data/v2/csv/pokemon_moves.csv
Expected Behavior
Either
mastery
is emptymastery
columnThe text was updated successfully, but these errors were encountered: