Skip to content

Commit

Permalink
Fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Jan 17, 2024
1 parent db5c930 commit 69b41bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 69b41bf

Please sign in to comment.