diff --git a/api/core/variables/segments.py b/api/core/variables/segments.py index fa884ad12e..2ab566b7b5 100644 --- a/api/core/variables/segments.py +++ b/api/core/variables/segments.py @@ -203,8 +203,8 @@ class ArrayFileSegment(ArraySegment): return "" class VersionedMemoryValue(BaseModel): - current_value: str - versions: Mapping[str, str] + current_value: str = None # type: ignore + versions: Mapping[str, str] = dict() model_config = ConfigDict(frozen=True)