Skip to content

Commit 8a551c5

Browse files
authored
Merge pull request #787 from fergusonrae/update-annotation-dict
Change annotation from dict -> Dict to support Python < 3.9
2 parents 08230bb + 682e370 commit 8a551c5

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)