Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
rikroe committed Feb 22, 2023
1 parent f7ca04e commit 35a15b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bimmer_connected/vehicle/remote_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async def trigger_remote_service(
url,
headers={"content-type": "application/json"} if data else None,
params=params,
data=json.dumps(data, cls=MyBMWJSONEncoder) if data else None,
content=json.dumps(data, cls=MyBMWJSONEncoder) if data else None,
)
event_id = response.json().get("eventId") if response.content else None

Expand Down

0 comments on commit 35a15b0

Please sign in to comment.