clip: fix params (#35934)

fix
This commit is contained in:
Maxime Desroches
2025-08-05 21:50:30 -07:00
committed by GitHub
parent d1e0a60408
commit 69ca699773
2 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ def populate_car_params(lr: LogReader):
for cp in entries:
key, value = cp.key, cp.value
try:
params.put(key, value)
params.put(key, params.cpp2python(key, value))
except UnknownKeyName:
# forks of openpilot may have other Params keys configured. ignore these
logger.warning(f"unknown Params key '{key}', skipping")