Skip to content

Commit 8ad351b

Browse files
committed
Mypy now reveals correct type
1 parent 0621e1b commit 8ad351b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

whole-repo-tests/test_mypy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def convert_lines():
115115
"one_of(integers(), text(), none(), binary(), builds(list), builds(dict))",
116116
"Any",
117117
),
118-
("tuples()", "tuple[]"), # Should be `tuple[()]`, but this is what mypy prints
118+
("tuples()", "tuple[()]"),
119119
("tuples(integers())", "tuple[int]"),
120120
("tuples(integers(), text())", "tuple[int, str]"),
121121
(

0 commit comments

Comments
 (0)