Skip to content

Commit

Permalink
Remove a unnecessary argument
Browse files Browse the repository at this point in the history
  • Loading branch information
dandyrilla committed Jul 12, 2023
1 parent a7a53fe commit 6f100a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2017-08-14-pandas-tsv.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ from functools import partial, partialmethod
import pandas as pd


pd.read_tsv = partial(pd.read_csv, sep='\t', header=0)
pd.read_tsv = partial(pd.read_csv, sep='\t')
pd.DataFrame.to_tsv = partialmethod(pd.DataFrame.to_csv, sep='\t', index=False)
```

0 comments on commit 6f100a5

Please sign in to comment.