From 13519c842fabb130b97cfa029e58b907a732378c Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 2 Jun 2023 22:20:54 -0700 Subject: [PATCH] and more --- selfdrive/car/fw_versions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/selfdrive/car/fw_versions.py b/selfdrive/car/fw_versions.py index f0252789fb..b1d3763944 100755 --- a/selfdrive/car/fw_versions.py +++ b/selfdrive/car/fw_versions.py @@ -86,8 +86,6 @@ def match_fw_to_car_fuzzy(fw_versions_dict, config, log=True, exclude=None): for version in versions: # All cars that have this FW response on the specified address candidates = all_fw_versions[(addr[0], addr[1], version)] - # print(addr, version) - # print('first candidates', candidates) # If no exact FW matches, try brand-specific fuzzy fingerprinting if len(candidates) != 1 and config.fuzzy_get_platform_codes is not None: @@ -95,7 +93,6 @@ def match_fw_to_car_fuzzy(fw_versions_dict, config, log=True, exclude=None): if len(platform_codes) == 1: platform_code = list(platform_codes)[0] candidates = all_platform_codes[(addr[0], addr[1], platform_code)] - print('second candidates', candidates) if len(candidates) == 1: match_count += 1