Skip to content

Commit a57f24a

Browse files
committed
linter fix
1 parent c1d3392 commit a57f24a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/a2a/server/tasks/inmemory_task_store.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import asyncio
22
import logging
33

4+
from typing import Any
5+
46
from a2a.server.context import ServerCallContext
57
from a2a.server.tasks.task_store import TaskStore, TasksPage
68
from a2a.types import ListTasksParams, Task
@@ -64,7 +66,7 @@ async def list(
6466
]
6567

6668
# Reduce payload
67-
base_updates = {}
69+
base_updates: dict[str, Any] = {}
6870
if not params.include_artifacts:
6971
base_updates = {'artifacts': []}
7072
for i in range(len(tasks)):

0 commit comments

Comments
 (0)