text_type should be a type alias, not a variable (#5945)

This commit is contained in:
Johan Walles
2021-08-22 12:44:23 +02:00
committed by GitHub
parent 29c63e0d9c
commit e4879abb59

View File

@@ -25,8 +25,8 @@ PY34: Literal[True]
string_types: tuple[Type[str]]
integer_types: tuple[Type[int]]
class_types: tuple[Type[Type[Any]]]
text_type: Type[str]
binary_type: Type[bytes]
text_type = str
binary_type = bytes
MAXSIZE: int