Spaces:
Runtime error
Runtime error
Nicky Nicolson
commited on
Commit
•
80bafd5
1
Parent(s):
e57384a
fix outputfile (read from args)
Browse files- tab2csv.py +1 -1
tab2csv.py
CHANGED
@@ -12,4 +12,4 @@ if __name__ == '__main__':
|
|
12 |
keep_default_na=False,
|
13 |
on_bad_lines='skip',
|
14 |
sep='\t')
|
15 |
-
df.to_csv(outputfile, index=False, sep=',')
|
|
|
12 |
keep_default_na=False,
|
13 |
on_bad_lines='skip',
|
14 |
sep='\t')
|
15 |
+
df.to_csv(args.outputfile, index=False, sep=',')
|