We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i was running through the test_installation code, looks like
pd.read_csv(here("./data/gapminder.tsv", sep='\t'))
should be
pd.read_csv(here("./data/gapminder.tsv"), sep='\t')
misplaced ) after the filename...
The text was updated successfully, but these errors were encountered:
I got the error :TypeError: here() got an unexpected keyword argument 'sep'.
sep is a name parameter of read_csv(), not here(). Apparently the close parenthesis is misplaced.
Sorry, something went wrong.
should be fixed in f8037e6
serves me right to make a change without actually running it : |
Sorry!
No branches or pull requests
i was running through the test_installation code, looks like
should be
misplaced ) after the filename...
The text was updated successfully, but these errors were encountered: