Skip to content

Commit

Permalink
AVB-759: Allow none for aisle field
Browse files Browse the repository at this point in the history
  • Loading branch information
samulenti committed Jun 6, 2024
1 parent a77fa4c commit 8c812cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion livestyled/schemas/ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ class Meta:
printed = fields.Boolean(allow_none=True, required=False, missing=True)
timezone = fields.String(allow_none=True, required=False, missing=None)
ticket_type = fields.String(data_key='ticketType', required=False, allow_none=False)
aisle = fields.String(data_key='aisle', required=False, allow_none=False)
aisle = fields.String(data_key='aisle', required=False, allow_none=True)

0 comments on commit 8c812cd

Please sign in to comment.