refactor: mark base imports in tools as used

Adjusted import statements in `tools.__init__.py` to silence linting warnings regarding unused imports. This emphasizes that `BaseTool`, `StopProcessing`, and `Handover` are intentionally imported for export purposes, despite not being directly referenced. This change aids in maintaining cleaner code and reduces confusion around import intentions.

No functional impact or changes in behavior are expected as a result of this refactor.
This commit is contained in:
Kumi 2024-05-18 21:36:21 +02:00
parent df567d005e
commit 28752ae3da
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,6 +1,6 @@
from importlib import import_module from importlib import import_module
from .base import BaseTool, StopProcessing, Handover from .base import BaseTool, StopProcessing, Handover # noqa: F401
TOOLS = {} TOOLS = {}