Spaces:
Runtime error
Runtime error
Nicky Nicolson
commited on
Commit
•
90c51f5
1
Parent(s):
cbab2c9
Mod type spec for limit arg
Browse files- tab2csv.py +1 -1
tab2csv.py
CHANGED
@@ -17,7 +17,7 @@ if __name__ == '__main__':
|
|
17 |
parser = argparse.ArgumentParser()
|
18 |
parser.add_argument("inputfile")
|
19 |
parser.add_argument("-c","--createcols", action='store_true')
|
20 |
-
parser.add_argument("-l","--limit", type=
|
21 |
parser.add_argument("outputfile")
|
22 |
args = parser.parse_args()
|
23 |
|
|
|
17 |
parser = argparse.ArgumentParser()
|
18 |
parser.add_argument("inputfile")
|
19 |
parser.add_argument("-c","--createcols", action='store_true')
|
20 |
+
parser.add_argument("-l","--limit", type=int)
|
21 |
parser.add_argument("outputfile")
|
22 |
args = parser.parse_args()
|
23 |
|