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

Upgrade mypy to 0.710 (#24666)

* Upgrade mypy to 0.710

* Address mypy 0.710 errors
This commit is contained in:
Ville Skyttä
2019-06-22 10:19:36 +03:00
committed by GitHub
parent f189367c02
commit a6eef22fbc
8 changed files with 18 additions and 14 deletions

View File

@@ -9,7 +9,7 @@ from asyncio.futures import Future
import asyncio
from asyncio import ensure_future
from typing import Any, Union, Coroutine, Callable, Generator, TypeVar, \
Awaitable
Awaitable, Optional
_LOGGER = logging.getLogger(__name__)
@@ -92,11 +92,11 @@ def _chain_future(
raise TypeError('A future is required for destination argument')
# pylint: disable=protected-access
if isinstance(source, Future):
source_loop = source._loop # type: ignore
source_loop = source._loop # type: Optional[AbstractEventLoop]
else:
source_loop = None
if isinstance(destination, Future):
dest_loop = destination._loop # type: ignore
dest_loop = destination._loop # type: Optional[AbstractEventLoop]
else:
dest_loop = None