diff --git a/custtypes.py b/custtypes.py index 7409f48..d30a1d3 100644 --- a/custtypes.py +++ b/custtypes.py @@ -5,5 +5,5 @@ 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] \ No newline at end of file +ExecutedPath: Neotype = PosixPath | WindowsPath +IdlePath: Neotype = PurePosixPath | PureWindowsPath \ No newline at end of file