positional args are nicer

pull/23950/head
Adeeb Shihadeh 2022-03-10 14:35:44 -08:00
parent 1680f1e251
commit 2c0d68120f
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ if __name__ == "__main__":
parser.add_argument("--bus", type=int, help="CAN bus to print out", default=0)
parser.add_argument("--init", type=str, help="Route or segment to initialize with")
parser.add_argument("--comp", type=str, help="Route or segment to compare against init")
parser.add_argument("init", type=str, help="Route or segment to initialize with")
parser.add_argument("comp", type=str, help="Route or segment to compare against init")
args = parser.parse_args()