Fix more ruff issues

This commit is contained in:
2025-12-07 05:42:29 +01:00
parent 10704896f9
commit a21121d025
4 changed files with 15 additions and 18 deletions
+3 -3
View File
@@ -86,9 +86,9 @@ def make_tools() -> dict[str, Tool]:
Dictionary mapping tool names to Tool objects
"""
# Import tools here to avoid circular dependencies
from .tools import api as api_tools
from .tools import filesystem as fs_tools
from .tools import language as lang_tools
from .tools import api as api_tools # noqa: PLC0415
from .tools import filesystem as fs_tools # noqa: PLC0415
from .tools import language as lang_tools # noqa: PLC0415
# List of all tool functions
tool_functions = [