[Tools] fixup imports

This commit is contained in:
Jan Petykiewicz 2026-02-15 12:35:58 -08:00
commit d9adb4e1b9

View file

@ -3,7 +3,7 @@ Tools are objects which dynamically generate simple single-use devices (e.g. wir
# TODO document all tools
"""
from typing import Literal, Any, Self
from typing import Literal, Any, Self, cast, TYPE_CHECKING
from collections.abc import Sequence, Callable
from abc import ABCMeta # , abstractmethod # TODO any way to make Tool ok with implementing only one method?
from dataclasses import dataclass