9 lines
266 B
Python
9 lines
266 B
Python
"""
|
|
Library of custom type hints.
|
|
"""
|
|
|
|
from typing import TypeAlias as Neotype
|
|
from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath
|
|
|
|
ExecutedPath: Neotype = Union[PosixPath, WindowsPath]
|
|
IdlePath: Neotype = Union[PurePosixPath, PureWindowsPath] |