mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-06 00:36:32 +08:00
10 lines
204 B
Python
10 lines
204 B
Python
from common.params import Params
|
|
from selfdrive.controls.behaviord import PARAMS
|
|
|
|
p = Params()
|
|
|
|
# delete all params in PARAMS
|
|
|
|
for param in PARAMS.keys():
|
|
p.remove(param)
|
|
print(f"deleted {param}") |