From 2bc6a34ee52f63651197f4192948699434d416e3 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Mon, 1 Jun 2020 15:28:47 -0700 Subject: [PATCH] fix flake8 error in honda carstate old-commit-hash: 0a5bb88ca293a690d947ea5d98e915f3f3c8eca9 --- selfdrive/car/honda/carstate.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/selfdrive/car/honda/carstate.py b/selfdrive/car/honda/carstate.py index a105b19ed..8635831db 100644 --- a/selfdrive/car/honda/carstate.py +++ b/selfdrive/car/honda/carstate.py @@ -133,9 +133,10 @@ def get_can_signals(CP): ("MAIN_ON", "SCM_BUTTONS", 0), ("BRAKE_HOLD_ACTIVE", "VSA_STATUS", 0)] elif CP.carFingerprint == CAR.HRV: - signals += [("CAR_GAS", "GAS_PEDAL",0), + signals += [("CAR_GAS", "GAS_PEDAL", 0), ("MAIN_ON", "SCM_BUTTONS", 0), - ("BRAKE_HOLD_ACTIVE", "VSA_STATUS", 0)] + ("BRAKE_HOLD_ACTIVE", "VSA_STATUS", 0)] + elif CP.carFingerprint == CAR.ODYSSEY: signals += [("MAIN_ON", "SCM_FEEDBACK", 0), ("EPB_STATE", "EPB_STATUS", 0)]