Fix errors discovered by running typeshed check on Windows (#3456)

Fix errors discovered by running typeshed check on Windows. This is a temporary fix for #3446 (in long term we should figure out why these were not caught by typeshed CI).

I also remove an outdated comment while I am at it.
This commit is contained in:
Ivan Levkivskyi
2019-11-11 12:18:58 +00:00
committed by GitHub
parent e55dad5dd0
commit 05780a0d11
2 changed files with 4 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
# and https://github.com/python/cpython/blob/master/Lib/formatter.py
from typing import Any, IO, List, Optional, Tuple
AS_IS = None
AS_IS: None
_FontType = Tuple[str, bool, bool, bool]
_StylesType = Tuple[Any, ...]