Skip to content

Commit 8eda7dc

Browse files
Copilot0xrinegade
andcommitted
Fix import formatting in Python test files
Co-authored-by: 0xrinegade <[email protected]>
1 parent 2b7fda8 commit 8eda7dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
pytest configuration and fixtures.
33
"""
44

5-
# Import compatibility shim FIRST before any other imports
6-
import pytest_xprocess_compat # noqa: F401
7-
85
import asyncio
96
from typing import Generator
107

118
import pytest
129

10+
# Import compatibility shim FIRST before any other imports
11+
import pytest_xprocess_compat # noqa: F401, isort:skip
12+
1313
# Configure pytest plugins to load our shim first
1414
pytest_plugins = ["pytest_plugin_compat"]
1515

python/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
sys.path.insert(0, os.path.dirname(__file__))
1111

1212
# Import compatibility shim BEFORE importing pytest
13-
import pytest_xprocess_compat # noqa: F401, E402
13+
import pytest_xprocess_compat # noqa: F401, E402, isort:skip
1414
import pytest # noqa: E402
1515

1616
if __name__ == "__main__":

0 commit comments

Comments
 (0)