Skip to content

Commit

Permalink
Fix 4000 error
Browse files Browse the repository at this point in the history
  • Loading branch information
GewoonJaap committed Nov 24, 2023
1 parent fe7a7d0 commit 3f4a91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psa_car_controller/psacc/application/psa_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_vehicle_info(self, vin, cache=False):
else:
for _ in range(0, 2):
try:
res = self.api().get_vehicle_status(car.vehicle_id, extension=["odometer"])
res = self.api().get_vehicle_status(car.vehicle_id)
if res is not None:
car.status = res
if self._record_enabled:
Expand Down

0 comments on commit 3f4a91c

Please sign in to comment.