File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ options:
74
74
-T TSO_PANELS, --tso_panels TSO_PANELS
75
75
Comma separated string of tso panels
76
76
-D DEV_PANNOS, --dev_pannos DEV_PANNOS
77
- Development pan numbers
77
+ Comma separated development pan numbers
78
78
-L LOGDIR, --logdir LOGDIR
79
79
Directory to save the output logfile to
80
80
-NSH NO_STREAM_HANDLER, --no_stream_handler NO_STRAM_HANDLER
Original file line number Diff line number Diff line change @@ -30,28 +30,28 @@ def get_arguments():
30
30
parser .add_argument (
31
31
"-SI" ,
32
32
"--sequencer_ids" ,
33
- type = str ,
33
+ type = lambda s : [ i for i in s . split ( ',' )] ,
34
34
required = True ,
35
35
help = "Comma separated string of allowed sequencer IDS" ,
36
36
)
37
37
parser .add_argument (
38
38
"-P" ,
39
39
"--panels" ,
40
- type = str ,
40
+ type = lambda s : [ i for i in s . split ( ',' )] ,
41
41
required = True ,
42
42
help = "Comma separated string of allowed panel numbers" ,
43
43
)
44
44
parser .add_argument (
45
45
"-T" ,
46
46
"--tso_panels" ,
47
- type = str ,
47
+ type = lambda s : [ i for i in s . split ( ',' )] ,
48
48
required = True ,
49
49
help = "Comma separated string of tso panels" ,
50
50
)
51
51
parser .add_argument (
52
52
"-D" ,
53
53
"--dev_pannos" ,
54
- type = str ,
54
+ type = lambda s : [ i for i in s . split ( ',' )] ,
55
55
required = True ,
56
56
help = "Comma separated string of development pan numbers" ,
57
57
)
You can’t perform that action at this time.
0 commit comments