Skip to content

Commit

Permalink
Make panels optional for existing cases
Browse files Browse the repository at this point in the history
  • Loading branch information
islean committed Jan 21, 2025
1 parent 09071ae commit a03a47e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg/services/orders/validation/models/existing_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class ExistingCase(BaseModel):
internal_id: str
panels: list[str]
panels: list[str] | None = None

@property
def is_new(self) -> bool:
Expand Down

0 comments on commit a03a47e

Please sign in to comment.