Skip to content

Commit 14cc937

Browse files
committed
Fix typing
1 parent 2147f93 commit 14cc937

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/a2a/utils/artifact.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import uuid
22

3+
from typing import Any
4+
35
from a2a.types import Artifact, DataPart, Part, TextPart
46

57

@@ -28,7 +30,7 @@ def new_text_artifact(
2830

2931
def new_data_artifact(
3032
name: str,
31-
data: dict[str, any],
33+
data: dict[str, Any],
3234
description: str = '',
3335
):
3436
return new_artifact(

0 commit comments

Comments
 (0)