Spaces:
Runtime error
Runtime error
Nicky Nicolson
commited on
Commit
•
bc6bc45
1
Parent(s):
424fd94
mod argument specification
Browse files- tab2csv.py +1 -1
tab2csv.py
CHANGED
@@ -7,7 +7,7 @@ tqdm.pandas()
|
|
7 |
if __name__ == '__main__':
|
8 |
parser = argparse.ArgumentParser()
|
9 |
parser.add_argument("inputfile")
|
10 |
-
parser.add_argument("-createcols", action='store_true')
|
11 |
parser.add_argument("outputfile")
|
12 |
args = parser.parse_args()
|
13 |
|
|
|
7 |
if __name__ == '__main__':
|
8 |
parser = argparse.ArgumentParser()
|
9 |
parser.add_argument("inputfile")
|
10 |
+
parser.add_argument("-c","--createcols", action='store_true')
|
11 |
parser.add_argument("outputfile")
|
12 |
args = parser.parse_args()
|
13 |
|