From bea9dcc01ba1efe868acb2cf3d9cb510176fd408 Mon Sep 17 00:00:00 2001 From: Christopher Barber Date: Sat, 13 Apr 2024 12:28:03 -0400 Subject: [PATCH] Fix ruff lint warnings --- test/impl/test_wheel.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/impl/test_wheel.py b/test/impl/test_wheel.py index 2ab10e9..773a266 100644 --- a/test/impl/test_wheel.py +++ b/test/impl/test_wheel.py @@ -15,6 +15,7 @@ """ Unit tests for the whl2conda.impl.wheel module """ + import platform import stat from pathlib import Path @@ -23,12 +24,13 @@ from whl2conda.impl.wheel import unpack_wheel -from ..test_packages import setup_wheel +from ..test_packages import setup_wheel # noqa: F401 + def test_unpack_wheel( tmp_path: Path, caplog: pytest.LogCaptureFixture, - setup_wheel: Path, + setup_wheel: Path, # noqa: F811 ) -> None: """ Unit test for unpack_wheel