fix: add type parameters to bare list annotations for mypy compliance

This commit is contained in:
Pouzor
2026-04-09 14:23:13 +02:00
parent e0f96001e2
commit 94c6ac7fa7
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class EdgeSave(BaseModel):
animated: str = 'none'
source_handle: str | None = None
target_handle: str | None = None
waypoints: list | None = None
waypoints: list[dict[str, float]] | None = None
@field_validator('animated', mode='before')
@classmethod