We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d3392 commit a57f24aCopy full SHA for a57f24a
src/a2a/server/tasks/inmemory_task_store.py
@@ -1,6 +1,8 @@
1
import asyncio
2
import logging
3
4
+from typing import Any
5
+
6
from a2a.server.context import ServerCallContext
7
from a2a.server.tasks.task_store import TaskStore, TasksPage
8
from a2a.types import ListTasksParams, Task
@@ -64,7 +66,7 @@ async def list(
64
66
]
65
67
68
# Reduce payload
- base_updates = {}
69
+ base_updates: dict[str, Any] = {}
70
if not params.include_artifacts:
71
base_updates = {'artifacts': []}
72
for i in range(len(tasks)):
0 commit comments