fix: added missing import of Callable type hint

This commit is contained in:
2026-01-07 23:16:43 -05:00
parent c45b282c5c
commit a4a8260d1c

View File

@@ -5,7 +5,7 @@ data as represented in or used by Ansible.
from typing import TypeAlias as Neotype from typing import TypeAlias as Neotype
from typing import TypedDict as Dict from typing import TypedDict as Dict
from typing import Never, Union from typing import Never, Union, Callable
from custtypes import ExecutedPath, IdlePath from custtypes import ExecutedPath, IdlePath
from enum import Enum from enum import Enum
from pathlib import Path, PurePath from pathlib import Path, PurePath