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
3 months ago, someone changed the code in seq.py from a set to a dictionary. It appears to break exporting an entire season to a csv file. The error I got was in line 306 'dict' object has no attribute 'add'. Changing that object back to a set seemed to succeed in terms of being able to export the data to a csv file.
Repro steps
1 fresh install nflgame
2 run nflgame.combine(nflgame.games(2010)).csv('season2010.csv')
Expected result export should succeed
Actual result export fails, error occurs
The text was updated successfully, but these errors were encountered:
3 months ago, someone changed the code in seq.py from a set to a dictionary. It appears to break exporting an entire season to a csv file. The error I got was in line 306 'dict' object has no attribute 'add'. Changing that object back to a set seemed to succeed in terms of being able to export the data to a csv file.
Repro steps
1 fresh install nflgame
2 run nflgame.combine(nflgame.games(2010)).csv('season2010.csv')
Expected result export should succeed
Actual result export fails, error occurs
The text was updated successfully, but these errors were encountered: