Commit 3b3e94f7 authored by Jan Reimes's avatar Jan Reimes
Browse files

🔧 chore(pool_executors): remove noqa comment from InterpreterPoolExecutor import

parent 5b8ef658
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ from pool_executors.pool_executors.types import ExecutorType

# Import InterpreterPoolExecutor for Python 3.14+, handle gracefully for older versions
try:
    from concurrent.futures import InterpreterPoolExecutor  # noqa: PLC0415
    from concurrent.futures import InterpreterPoolExecutor

    HAS_INTERPRETER_POOL_EXECUTOR = True
except ImportError, AttributeError: