Skip to content
New issue

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

code error in test_installaton.py #1

Open
naomitress opened this issue Jun 30, 2020 · 2 comments
Open

code error in test_installaton.py #1

naomitress opened this issue Jun 30, 2020 · 2 comments

Comments

@naomitress
Copy link

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...

@vuqpham
Copy link

vuqpham commented Jul 6, 2020

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.

@chendaniely
Copy link
Owner

should be fixed in f8037e6

serves me right to make a change without actually running it : |

Sorry!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants