Skip to content

Commit

Permalink
Make panels optional for existing cases (#4131) (patch)
Browse files Browse the repository at this point in the history
### Fixed

- Panels are optional for existing cases.
  • Loading branch information
islean authored Jan 21, 2025
1 parent 139d8fb commit 6aa6eed
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 6aa6eed

Please sign in to comment.