Skip to content

Commit 70aff1d

Browse files
committed
linting
1 parent 3068e42 commit 70aff1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agents/extensions/visualization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def get_all_edges(agent: Agent, parent: Optional[Agent] = None) -> str:
111111
"{agent.name}" -> "{handoff.name}";""")
112112
parts.append(get_all_edges(handoff, agent))
113113

114-
if not agent.handoffs and not isinstance(agent, Tool): # type: ignore
114+
if not agent.handoffs and not isinstance(agent, Tool): # type: ignore
115115
parts.append(f'"{agent.name}" -> "__end__";')
116116

117117
return "".join(parts)

0 commit comments

Comments
 (0)