Skip to content

Commit

Permalink
Fix ruff lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
analog-cbarber committed Apr 13, 2024
1 parent b5a53e4 commit bea9dcc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/impl/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""
Unit tests for the whl2conda.impl.wheel module
"""

import platform
import stat
from pathlib import Path
Expand All @@ -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
Expand Down

0 comments on commit bea9dcc

Please sign in to comment.