Skip to content

Commit 682e370

Browse files
committed
Change annotation from dict -> Dict to support Python < 3.9
1 parent 08230bb commit 682e370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parea/schemas/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class TraceLog(EvaluatedLog):
139139

140140
# from UI
141141
comments: Optional[List[TraceLogCommentSchema]] = None
142-
annotations: Optional[dict[int, dict[str, TraceLogAnnotationSchema]]] = None
142+
annotations: Optional[Dict[int, Dict[str, TraceLogAnnotationSchema]]] = None
143143

144144

145145
@define

0 commit comments

Comments
 (0)