fix: restore Path import in env_passthrough.py (removed by #5526)

The ContextVar migration removed 'from pathlib import Path' but Path
is still used in _load_config_passthrough(). Without this import,
config-based env passthrough would raise NameError.
This commit is contained in:
Teknium
2026-04-06 12:12:50 -07:00
committed by Teknium
parent 878b1d3d33
commit 261e2ee862

View File

@@ -22,6 +22,7 @@ from __future__ import annotations
import logging import logging
import os import os
from contextvars import ContextVar from contextvars import ContextVar
from pathlib import Path
from typing import Iterable from typing import Iterable
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)