Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit fd6389b

Browse files
Fix import order linter error
1 parent 1d26fc0 commit fd6389b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ def matplotlib_test_decorator(f):
1919
@pytest.fixture(scope="module")
2020
def wheel_path(tmp_path_factory):
2121
# Build a micropip wheel for testing
22-
import build
2322
from build.env import DefaultIsolatedEnv
2423

24+
import build
25+
2526
output_dir = tmp_path_factory.mktemp("wheel")
2627

2728
with DefaultIsolatedEnv() as env:

0 commit comments

Comments
 (0)