mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 14:27:07 +00:00
Fix oauth2 helper user step typing (#50618)
This commit is contained in:
parent
bcd8f43e7b
commit
e32dc306e1
@ -316,7 +316,11 @@ class AbstractOAuth2FlowHandler(config_entries.ConfigFlow, metaclass=ABCMeta):
|
||||
"""
|
||||
return self.async_create_entry(title=self.flow_impl.name, data=data)
|
||||
|
||||
async_step_user = async_step_pick_implementation
|
||||
async def async_step_user(
|
||||
self, user_input: dict[str, Any] | None = None
|
||||
) -> FlowResult:
|
||||
"""Handle a flow start."""
|
||||
return await self.async_step_pick_implementation(user_input)
|
||||
|
||||
@classmethod
|
||||
def async_register_implementation(
|
||||
|
Loading…
x
Reference in New Issue
Block a user