fix: added missing import of Enum
This commit is contained in:
@@ -4,6 +4,7 @@ Library of custom type hints.
|
|||||||
|
|
||||||
from typing import TypeAlias as Neotype
|
from typing import TypeAlias as Neotype
|
||||||
from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath
|
from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath
|
||||||
|
from enum import Enum
|
||||||
|
|
||||||
ExecutedPath: Neotype = PosixPath | WindowsPath
|
ExecutedPath: Neotype = PosixPath | WindowsPath
|
||||||
IdlePath: Neotype = PurePosixPath | PureWindowsPath
|
IdlePath: Neotype = PurePosixPath | PureWindowsPath
|
||||||
|
|||||||
Reference in New Issue
Block a user