fix: python lint errors

This commit is contained in:
Siddhant Rai
2024-12-19 10:06:06 +05:30
parent c3f538c2f6
commit daa332aa20
4 changed files with 33 additions and 23 deletions

View File

@@ -1,7 +1,6 @@
import json
from application.core.mongo_db import MongoDB
from application.core.settings import settings
from application.llm.llm_creator import LLMCreator
from application.tools.tool_manager import ToolManager

View File

@@ -27,7 +27,6 @@ class ToolManager:
def load_tool(self, tool_name, tool_config):
self.config[tool_name] = tool_config
tools_dir = os.path.join(os.path.dirname(__file__), "implementations")
module = importlib.import_module(
f"application.tools.implementations.{tool_name}"
)