mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
8 lines
128 B
Python
8 lines
128 B
Python
"""
|
|
Common typing aliases used in Meshroom.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
from typing import Union
|
|
|
|
PathLike = Union[Path, str]
|