From e86f039091a37bfe1a454c830fbd5a8b5c0398ec Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 23 Jan 2024 21:06:53 -0800 Subject: [PATCH] print --- selfdrive/car/chrysler/fingerprints.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/selfdrive/car/chrysler/fingerprints.py b/selfdrive/car/chrysler/fingerprints.py index 9ef991e8ed..bab362d88d 100644 --- a/selfdrive/car/chrysler/fingerprints.py +++ b/selfdrive/car/chrysler/fingerprints.py @@ -314,3 +314,12 @@ FW_VERSIONS = { ], }, } + + +for car in FINGERPRINTS: + if car not in FW_VERSIONS: + print('Add to FW_VERSIONS:', car) + +for car in FW_VERSIONS: + if car not in FINGERPRINTS: + print('Good, not in FINGERPRINTS')