Merge pull request #48 from aguzererler/fix/unused-typing-imports-8765363568869734056

🧹 Remove unused imports in trading_graph.py
This commit is contained in:
ahmet guzererler 2026-03-21 17:24:14 +01:00 committed by GitHub
commit e292c833ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 8 deletions

View File

@ -1,10 +1,8 @@
# TradingAgents/graph/trading_graph.py # TradingAgents/graph/trading_graph.py
import os import os
from pathlib import Path
import json import json
from datetime import date from typing import Dict, Any, List, Optional
from typing import Dict, Any, Tuple, List, Optional
from langgraph.prebuilt import ToolNode from langgraph.prebuilt import ToolNode
@ -13,11 +11,6 @@ from tradingagents.llm_clients import create_llm_client
from tradingagents.agents import * from tradingagents.agents import *
from tradingagents.default_config import DEFAULT_CONFIG from tradingagents.default_config import DEFAULT_CONFIG
from tradingagents.agents.utils.memory import FinancialSituationMemory from tradingagents.agents.utils.memory import FinancialSituationMemory
from tradingagents.agents.utils.agent_states import (
AgentState,
InvestDebateState,
RiskDebateState,
)
from tradingagents.dataflows.config import set_config from tradingagents.dataflows.config import set_config
# Import the new abstract tool methods from agent_utils # Import the new abstract tool methods from agent_utils