Upgrade mypy to 0.910.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-08-24 19:50:14 -07:00
parent 626359596e
commit d32d442c44
5 changed files with 12 additions and 5 deletions

View file

@ -1,4 +1,4 @@
import pkgutil
from typing import Iterable
from typing import List
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[str]
__path__ = pkgutil.extend_path(__path__, __name__) # type: List[str]