Rename FlowResultDict to FlowResult (#49847)

This commit is contained in:
Ruslan Sayfutdinov 2021-04-29 12:40:51 +01:00 committed by GitHub
parent 8be6605be9
commit 183220008d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 229 additions and 269 deletions

View file

@ -17,7 +17,7 @@ from homeassistant.const import (
CONF_USERNAME,
)
from homeassistant.core import HomeAssistant, callback
from homeassistant.data_entry_flow import FlowResultDict
from homeassistant.data_entry_flow import FlowResult
from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers.httpx_client import get_async_client
@ -132,7 +132,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."""
errors = {}