Fix _abort_if_unique_id_configured updates type hint (#68730)

This commit is contained in:
Ville Skyttä 2022-03-29 10:24:15 +03:00 committed by GitHub
parent 14fbda8412
commit 05ddd773ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1230,7 +1230,7 @@ class ConfigFlow(data_entry_flow.FlowHandler):
@callback
def _abort_if_unique_id_configured(
self,
updates: dict[Any, Any] | None = None,
updates: dict[str, Any] | None = None,
reload_on_update: bool = True,
) -> None:
"""Abort if the unique ID is already configured."""