Upgrade mypy to 0.740 (#27913)

* Upgrade mypy to 0.740

http://mypy-lang.blogspot.com/2019/10/mypy-0740-released.html

* Type hint additions

* Type fixes

* Remove no longer needed type ignores and casts

* Disable untyped definition checks in bunch of files
This commit is contained in:
Ville Skyttä 2019-10-19 21:35:57 +03:00 committed by Paulus Schoutsen
parent 758fcc9b00
commit 381d423fec
17 changed files with 25 additions and 21 deletions

View file

@ -3,7 +3,7 @@ from typing import Callable, Awaitable, Union
from homeassistant import config_entries
from .typing import HomeAssistantType
# mypy: allow-untyped-defs
# mypy: allow-untyped-defs, no-check-untyped-defs
DiscoveryFunctionType = Callable[[], Union[Awaitable[bool], bool]]