positional args are nicer

old-commit-hash: 2c0d68120f594888fddfe797f74def6676f8f46a
This commit is contained in:
Adeeb Shihadeh
2022-03-10 14:35:44 -08:00
parent 8a682597ca
commit 0734322971
+2 -2
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()