Skip to content

Commit

Permalink
fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
thecode committed Jan 11, 2025
1 parent 394e720 commit 4c39f14
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions homeassistant/components/webostv/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,7 @@ async def async_step_reconfigure(
except WEBOSTV_EXCEPTIONS:
errors["base"] = "cannot_connect"
else:
await self.async_set_unique_id(
client.hello_info["deviceUUID"]
)
await self.async_set_unique_id(client.hello_info["deviceUUID"])
self._abort_if_unique_id_mismatch(reason="wrong_device")
data = {CONF_HOST: host, CONF_CLIENT_SECRET: client.client_key}
return self.async_update_reload_and_abort(reconfigure_entry, data=data)
Expand Down

0 comments on commit 4c39f14

Please sign in to comment.