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

@@ -6,7 +6,7 @@ detect_location_info and elevation are mocked by default during tests.
import asyncio
import collections
import math
from typing import Any, Optional, Tuple, Dict, cast
from typing import Any, Optional, Tuple, Dict
import aiohttp
@@ -159,7 +159,7 @@ def vincenty(
if miles:
s *= MILES_PER_KILOMETER # kilometers to miles
return round(cast(float, s), 6)
return round(s, 6)
async def _get_ipapi(session: aiohttp.ClientSession) -> Optional[Dict[str, Any]]: