Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e4879ab

Browse files
authored
text_type should be a type alias, not a variable (#5945)
1 parent 29c63e0 commit e4879ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stubs/six/six/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ PY34: Literal[True]
2525
string_types: tuple[Type[str]]
2626
integer_types: tuple[Type[int]]
2727
class_types: tuple[Type[Type[Any]]]
28-
text_type: Type[str]
29-
binary_type: Type[bytes]
28+
text_type = str
29+
binary_type = bytes
3030

3131
MAXSIZE: int
3232

0 commit comments

Comments
 (0)