Skip to content

Commit 1c7741e

Browse files
Apply ruff/flake8-pyi rule PYI036
PYI036 Returning Any from function
1 parent 1a885cc commit 1c7741e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v3/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def async_group(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> As
9999

100100

101101
@pytest.fixture(params=["numpy", "cupy"])
102-
def xp(request: pytest.FixtureRequest) -> Iterator[ModuleType]:
102+
def xp(request: pytest.FixtureRequest) -> Any:
103103
"""Fixture to parametrize over numpy-like libraries"""
104104

105105
if request.param == "cupy":

0 commit comments

Comments
 (0)