Always use bool and Literal for Python compat code (#9213)

This commit is contained in:
Nikita Sobolev
2022-11-16 21:00:59 +03:00
committed by GitHub
parent 9137258cf4
commit c6261372d7
8 changed files with 30 additions and 23 deletions
@@ -1,7 +1,8 @@
from typing import Any
from typing_extensions import Literal
PY2: Any
PY35: Any
PY2: Literal[False]
PY35: Literal[True]
annotation_value_types: Any
string_types = str