We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f44ee commit fd2a62cCopy full SHA for fd2a62c
whole-repo-tests/test_mypy.py
@@ -352,7 +352,7 @@ def test_raises_for_mixed_pos_kwargs_in_given(tmpdir):
352
from hypothesis import given
353
from hypothesis.strategies import text
354
355
- @given(text(), x=text()) # type: ignore
+ @given(text(), x=text())
356
def test_bar(x):
357
...
358
"""
whole-repo-tests/test_pyright.py
@@ -62,7 +62,7 @@ def test_pyright_issue_3296(tmp_path: Path):
62
63
from hypothesis.strategies import lists, integers
64
65
- reveal_type(lists(integers()).map(sorted), expected_text="SearchStrategy[list[int]]")
+ lists(integers()).map(sorted)
66
67
)
68
0 commit comments