From ee15faa1045cdb9a9fe3107ae088688ca750012d Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 2 Jan 2026 17:02:11 -0500 Subject: [PATCH] fix: replaced undefined Union reference to use of Union operator --- custtypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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