Skip to content

Commit

Permalink
Fix data loading bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsWajdy committed Apr 2, 2020
1 parent b86b76a commit 33df02b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __fetch_data():
with open(__DATA_FILE, 'wb') as f:
f.write(request.content)

df = pd.read_csv(__DATA_FILE)
df = pd.read_csv(__DATA_FILE, error_bad_lines=False)

# Transform
df = df.rename(columns={
Expand Down

0 comments on commit 33df02b

Please sign in to comment.