Improve sta_name argparse variable

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-03 15:44:08 -07:00
parent 3e2def4e5f
commit 861e9b127c

View File

@@ -131,7 +131,8 @@ def main():
''')
parser.add_argument('--mode', help='Used to force mode of stations')
parser.add_argument('--sta_name', help='Name of station to be used', default=["sta0000"])
parser.add_argument('--sta_name', help='Optional: User defined station names, can be a comma or space separated list', nargs='+',
default=["sta0000"])
args = parser.parse_args()