Skip to content

Commit f880658

Browse files
Fix pandas warning mandating keyword arguments
1 parent 691436a commit f880658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/interfaces/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ def less_breakable(a_string):
955955

956956
drop_columns = drop_columns or []
957957
additional_metadata = additional_metadata or {}
958-
tsv_data = pd.read_csv(in_tsv, "\t")
958+
tsv_data = pd.read_csv(in_tsv, sep="\t")
959959
for k, v in additional_metadata.items():
960960
tsv_data[k] = [v] * len(tsv_data.index)
961961
for col in drop_columns:

0 commit comments

Comments
 (0)