1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Upgrade mypy to 0.730, address raised issues (#26959)

https://mypy-lang.blogspot.com/2019/09/mypy-730-released.html
This commit is contained in:
Ville Skyttä
2019-09-27 22:57:59 +03:00
committed by GitHub
parent 77654da341
commit fde128d66c
11 changed files with 25 additions and 19 deletions

View File

@@ -24,7 +24,7 @@ _LOGGER = logging.getLogger(__name__)
try:
# pylint: disable=invalid-name
asyncio_run = asyncio.run
asyncio_run = asyncio.run # type: ignore
except AttributeError:
_T = TypeVar("_T")