diff --git a/custtypes.py b/custtypes.py index 742a68a..e55ae45 100644 --- a/custtypes.py +++ b/custtypes.py @@ -4,6 +4,7 @@ Library of custom type hints. from typing import TypeAlias as Neotype from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath +from enum import Enum ExecutedPath: Neotype = PosixPath | WindowsPath IdlePath: Neotype = PurePosixPath | PureWindowsPath