Skip to content

Commit edf5a7d

Browse files
Copilot0xrinegade
andcommitted
fix: resolve import formatting conflicts in pytest_xprocess_compat.py
Co-authored-by: 0xrinegade <[email protected]>
1 parent e2cc413 commit edf5a7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pytest_xprocess_compat.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99

1010
# Create the pytest_xprocess module by directly importing from xprocess.pytest_xprocess
1111
try:
12+
# fmt: off
1213
# Import the entire module directly
1314
import xprocess.pytest_xprocess as pytest_xprocess_module # isort:skip
1415
from xprocess.pytest_xprocess import * # noqa: F401, F403, isort:skip
15-
1616
# Add it to sys.modules as pytest_xprocess
1717
sys.modules["pytest_xprocess"] = pytest_xprocess_module
18+
# fmt: on
1819

1920
except ImportError:
2021
# Fallback if xprocess.pytest_xprocess isn't available

0 commit comments

Comments
 (0)