feat: add z-level to annotations

This commit is contained in:
Matthias
2025-09-24 18:13:42 +02:00
parent c4aa221c9b
commit 9aeb2eaabd
2 changed files with 3 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ class AnnotationType(TypedDict, total=False):
y_end: float
color: str
label: str
z_level: int
AnnotationTypeTA = TypeAdapter(AnnotationType)