Update/fix plot params

This commit is contained in:
phil 2024-03-14 17:02:04 +05:30
parent 9c328642cb
commit e377c014a7
2 changed files with 19 additions and 4 deletions

View file

@ -39,9 +39,9 @@ class PlotBaseLine(BaseModel):
class PlotParams(BaseModel):
baseLines: list[PlotBaseLine]
bgShape: list[PlotBgShape]
barBase: float
baseLines: list[PlotBaseLine] = []
bgShapes: list[PlotBgShape] = []
barBase: float | None = None
class Attachment(BaseModel):