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
In the project, files are opened with open(fname, 'rU'), which is deprecated and not supported any longer by newest python versions. On my machine it can be replaced with open(fname, 'r'). Maybe some newline setting is required to work everywhere.
In the project, files are opened with
open(fname, 'rU'), which is deprecated and not supported any longer by newest python versions. On my machine it can be replaced withopen(fname, 'r'). Maybe some newline setting is required to work everywhere.