diff --git a/selfdrive/car/fw_versions.py b/selfdrive/car/fw_versions.py index f6a3b0069d..1d8d259a4d 100755 --- a/selfdrive/car/fw_versions.py +++ b/selfdrive/car/fw_versions.py @@ -109,8 +109,8 @@ def match_fw_to_car_fuzzy(fw_versions_dict, config, log=True, exclude=None): if log: cloudlog.error(f"Fingerprinted {candidate} using fuzzy match. {len(matched_ecus)} matching ECUs") return {candidate} - - return set() + else: + return set() def match_fw_to_car_exact(fw_versions_dict, config=None, log=True) -> Set[str]: