mirror of
https://github.com/usestrix/strix.git
synced 2026-09-10 22:41:11 +00:00
fix: convert tool_executions.items() to list for stable iteration
This commit is contained in:
parent
aead9e09c0
commit
90cae1cf97
1 changed files with 1 additions and 1 deletions
|
|
@ -793,7 +793,7 @@ class StrixTUIApp(App): # type: ignore[misc]
|
|||
"id": f"tool_{exec_id}",
|
||||
"data": tool_data,
|
||||
}
|
||||
for exec_id, tool_data in self.tracer.tool_executions.items()
|
||||
for exec_id, tool_data in list(self.tracer.tool_executions.items())
|
||||
if tool_data.get("agent_id") == agent_id
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue