Skip to content

Commit

Permalink
Fix CarelinkClient parameter order (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
yo-han authored Mar 24, 2024
1 parent 1cad189 commit 7dbb809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/carelink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
config = entry.data

carelink_client = CarelinkClient(
config["cl_token"],
config["cl_refresh_token"],
config["cl_token"],
config["cl_client_id"],
config["cl_client_secret"],
config["cl_mag_identifier"],
Expand Down

0 comments on commit 7dbb809

Please sign in to comment.