1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Bump mypy to 0.930 (#62642)

Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
This commit is contained in:
Tobias Sauerwein
2021-12-27 17:55:17 +01:00
committed by GitHub
parent b0704c190f
commit 2c904c0974
22 changed files with 73 additions and 58 deletions

View File

@@ -159,9 +159,7 @@ async def async_check_ha_config_file( # noqa: C901
):
try:
result[domain] = (
await config_validator.async_validate_config( # type: ignore
hass, config
)
await config_validator.async_validate_config(hass, config)
)[domain]
continue
except (vol.Invalid, HomeAssistantError) as ex: