Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: QuantConnect-Platform-2.0.0.yaml
# timestamp: 2025-08-15T14:51:37+00:00
# timestamp: 2025-08-15T16:44:31+00:00

from __future__ import annotations
from pydantic import RootModel, ConfigDict
Expand Down Expand Up @@ -2875,7 +2875,7 @@ class Series(BaseModel):
Optional[int], Field(description='Index/position of the series on the chart.')
] = None
values: Annotated[
Optional[List[List]],
Optional[Union[List[List], List[Dict[str, Any]]]],
Field(
description='Values for the series plot. These values are assumed to be in ascending time order (first points earliest, last points latest)'
),
Expand Down