Use standard argument name in async_step_reauth (#74137)
This commit is contained in:
parent
2225d0e899
commit
dc039f5218
35 changed files with 35 additions and 38 deletions
|
@ -31,7 +31,7 @@ class OAuth2FlowHandler(
|
|||
scopes = ["create"]
|
||||
return {"scope": " ".join(scopes)}
|
||||
|
||||
async def async_step_reauth(self, user_input: Mapping[str, Any]) -> FlowResult:
|
||||
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult:
|
||||
"""Perform reauth upon an API authentication error."""
|
||||
self._reauth_entry = self.hass.config_entries.async_get_entry(
|
||||
self.context["entry_id"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue