Skip to content

Commit

Permalink
Don't raise Overkiz user flow unique_id check (#133471)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl authored Dec 18, 2024
1 parent 869a0d7 commit fa0e54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/overkiz/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def async_validate_input(self, user_input: dict[str, Any]) -> dict[str, An
for gateway in gateways:
if is_overkiz_gateway(gateway.id):
gateway_id = gateway.id
await self.async_set_unique_id(gateway_id)
await self.async_set_unique_id(gateway_id, raise_on_progress=False)

return user_input

Expand Down

0 comments on commit fa0e54e

Please # to comment.