SmartThings issue with unique_id (#72715)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
This commit is contained in:
Alexey Zimarev 2022-05-31 16:35:29 +02:00 committed by Paulus Schoutsen
parent 6e06b6c9ed
commit 4bf5132a06

View File

@ -405,7 +405,7 @@ async def _continue_flow(
(
flow
for flow in hass.config_entries.flow.async_progress_by_handler(DOMAIN)
if flow["context"]["unique_id"] == unique_id
if flow["context"].get("unique_id") == unique_id
),
None,
)