From b7d35f4147b29a6cfd010772122e8854f84d81a1 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Wed, 7 Jan 2026 23:13:09 -0500 Subject: [PATCH] fix: added missing import of Enum --- custtypes.py | 1 + 1 file changed, 1 insertion(+) 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