fix: added missing import of Enum

This commit is contained in:
2026-01-07 23:13:09 -05:00
parent 86cd3584b3
commit b7d35f4147

View File

@@ -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