Skip to content

Commit

Permalink
Update audi_services.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolbi authored Nov 12, 2024
1 parent f3dd0e9 commit 3cae92b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/audiconnect/audi_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ async def set_climatisation(self, vin: str, start: bool):
headers = {
"Authorization": "Bearer " + self._bearer_token_json["access_token"]
}
res = await self._api.request(
await self._api.request(
"POST",
"https://emea.bff.cariad.digital/vehicle/v1/vehicles/{vin}/climatisation/start".format(
vin=vin.upper(),
Expand All @@ -564,7 +564,7 @@ async def set_climatisation(self, vin: str, start: bool):
headers = {
"Authorization": "Bearer " + self._bearer_token_json["access_token"]
}
res = await self._api.request(
await self._api.request(
"POST",
"https://emea.bff.cariad.digital/vehicle/v1/vehicles/{vin}/climatisation/stop".format(
vin=vin.upper(),
Expand Down

0 comments on commit 3cae92b

Please sign in to comment.