Skip to content

Commit

Permalink
Rename FlowResultDict in scaffold template (home-assistant#49858)
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI authored Apr 29, 2021
1 parent 4a95f6c commit a4db35a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from homeassistant import config_entries
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultDict
from homeassistant.data_entry_flow import FlowResult
from homeassistant.exceptions import HomeAssistantError

from .const import DOMAIN
Expand Down Expand Up @@ -70,7 +70,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):

async def async_step_user(
self, user_input: dict[str, Any] | None = None
) -> FlowResultDict:
) -> FlowResult:
"""Handle the initial step."""
if user_input is None:
return self.async_show_form(
Expand Down

0 comments on commit a4db35a

Please sign in to comment.