rename CarEvents (#38493)

This commit is contained in:
Shane Smiskol
2026-07-29 20:08:20 -07:00
committed by GitHub
parent 6ac27d491b
commit c9f0d296b1
2 changed files with 3 additions and 3 deletions
@@ -13,7 +13,7 @@ EventName = log.OnroadEvent.EventName
NetworkLocation = structs.CarParams.NetworkLocation
class CarSpecificEvents:
class CarEvents:
def __init__(self, CP: structs.CarParams):
self.CP = CP
+2 -2
View File
@@ -15,7 +15,7 @@ from openpilot.common.realtime import config_realtime_process, Priority, Ratekee
from openpilot.common.swaglog import cloudlog
from openpilot.common.gps import get_gps_location_service
from openpilot.selfdrive.car.car_specific import CarSpecificEvents
from openpilot.selfdrive.car.car_events import CarEvents
from openpilot.selfdrive.locationd.helpers import PoseCalibrator, Pose
from openpilot.selfdrive.selfdrived.events import Events, ET
from openpilot.selfdrive.selfdrived.helpers import ExcessiveActuationCheck
@@ -59,7 +59,7 @@ class SelfdriveD:
else:
self.CP = CP
self.car_events = CarSpecificEvents(self.CP)
self.car_events = CarEvents(self.CP)
self.pose_calibrator = PoseCalibrator()
self.calibrated_pose: Pose | None = None