six: Fix incorrect type[type[Any]] annotation (#8599)

Mypy will (correctly, I think) start flagging `type[type[Any]]` as an illegal annotation when mypy 0.980 comes out. Let's fix it now, before it comes out.
This commit is contained in:
Alex Waygood
2022-08-23 19:26:10 +01:00
committed by GitHub
parent 9469c1c7ea
commit e160324ba7

View File

@@ -28,7 +28,7 @@ PY34: Literal[True]
string_types: tuple[type[str]]
integer_types: tuple[type[int]]
class_types: tuple[type[type[Any]]]
class_types: tuple[type[type]]
text_type = str
binary_type = bytes