mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 13:12:12 -03:00
13 lines
456 B
Python
13 lines
456 B
Python
"""Project namespace package."""
|
|
|
|
# pytest's internal compatibility layer still imports ``py.path.local`` from the
|
|
# historical ``py`` dependency. Because this project reuses the ``py`` package
|
|
# name, we expose a minimal shim so ``py.path.local`` resolves to ``pathlib.Path``
|
|
# during test runs without pulling in the external dependency.
|
|
from pathlib import Path
|
|
from types import SimpleNamespace
|
|
|
|
path = SimpleNamespace(local=Path)
|
|
|
|
__all__ = ["path"]
|