Skip to content

Commit 50d1444

Browse files
jsonbaileyclaude
andcommitted
fix: split agents import onto separate lines to satisfy isort
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 8cd1902 commit 50d1444

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/ai-providers/server-ai-openai/src/ldai_openai/openai_agent_runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ async def run(
6363
metrics including aggregated token usage and observed ``tool_calls``.
6464
"""
6565
try:
66-
from agents import Agent, Runner as _Runner
66+
from agents import Agent
67+
from agents import Runner as _Runner
6768
except ImportError:
6869
log.warning(
6970
"openai-agents is required for OpenAIAgentRunner. "

0 commit comments

Comments
 (0)