From 2c0d68120f594888fddfe797f74def6676f8f46a Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 10 Mar 2022 14:35:44 -0800 Subject: [PATCH] positional args are nicer --- selfdrive/debug/can_print_changes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/debug/can_print_changes.py b/selfdrive/debug/can_print_changes.py index caf001eeaa..7e49487b59 100755 --- a/selfdrive/debug/can_print_changes.py +++ b/selfdrive/debug/can_print_changes.py @@ -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()