Skip to content

Commit a5a73c9

Browse files
committed
Fix type checking not required
1 parent 0e3ff97 commit a5a73c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agents/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1868,7 +1868,7 @@ async def _save_result_to_session(
18681868
store_setting = item.agent.model_settings.store
18691869
if store_setting is False and "id" in input_item:
18701870
# Remove the instance-specific IDs to enable load balancing
1871-
input_item = {k: v for k, v in input_item.items() if k != "id"}
1871+
input_item = {k: v for k, v in input_item.items() if k != "id"} # type: ignore[assignment]
18721872
new_items_as_input.append(input_item)
18731873

18741874
# Save all items from this turn

0 commit comments

Comments
 (0)