Meshroom/meshroom/core/mtyping.py
2025-03-26 11:32:35 +00:00

8 lines
128 B
Python

"""
Common typing aliases used in Meshroom.
"""
from pathlib import Path
from typing import Union
PathLike = Union[Path, str]