Files
IQ.Pilot/_vendor_runtime/iqdbc/car/mock/carstate.py
2026-08-16 22:28:41 -05:00

8 lines
231 B
Python

from iqdbc.car import structs
from iqdbc.car.interfaces import CarStateBase
class CarState(CarStateBase):
def update(self, *_) -> tuple[structs.CarState, structs.IQCarState]:
return structs.CarState(), structs.IQCarState()