mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 00:08:29 +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]
|