ruff/crates/ruff_linter/resources/test/fixtures/pycodestyle/E402_4.py
Vasco Schiavo 24bab7e82e
[pycodestyle] Exempt sys.path += ... calls (E402) (#15980)
## Summary

The PR addresses issue #15886 .
2025-02-06 08:51:51 +01:00

7 lines
No EOL
109 B
Python

import os
import sys
sys.path += [os.path.dirname(__file__)]
sys.path += ["../"]
from package import module