From 69b41bf61b47db0cfb32c94b49a5757a5b8516a3 Mon Sep 17 00:00:00 2001 From: Kevin Phoenix Date: Wed, 17 Jan 2024 13:08:34 -0700 Subject: [PATCH] Fix mypy issues --- python/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/conftest.py b/python/tests/conftest.py index 26edd93..5ef4761 100644 --- a/python/tests/conftest.py +++ b/python/tests/conftest.py @@ -7,7 +7,7 @@ ALL = {"darwin", "linux", "win32"} -def pytest_runtest_setup(item) -> None: # noqa: ANN001 +def pytest_runtest_setup(item: pytest.Item) -> None: supported_platforms = ALL.intersection(mark.name for mark in item.iter_markers()) plat = sys.platform if supported_platforms and plat not in supported_platforms: