From a4a8260d1c3dd7f22445684e63e20a87f7ea286c Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Wed, 7 Jan 2026 23:16:43 -0500 Subject: [PATCH] fix: added missing import of Callable type hint --- softman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softman.py b/softman.py index f2e5806..cf3986e 100644 --- a/softman.py +++ b/softman.py @@ -5,7 +5,7 @@ data as represented in or used by Ansible. from typing import TypeAlias as Neotype from typing import TypedDict as Dict -from typing import Never, Union +from typing import Never, Union, Callable from custtypes import ExecutedPath, IdlePath from enum import Enum from pathlib import Path, PurePath