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 6f100a5 commit bc67bca
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 @@ -14,7 +14,7 @@ import pandas as pd


def read_tsv(filename, **kw):
_kw = dict(sep='\t', header=0)
_kw = dict(sep='\t')
_kw.update(kw)
df = pd.read_csv(filename, **_kw)
return df
Expand Down

0 comments on commit bc67bca

Please sign in to comment.