Skip to content

Commit 6f652c5

Browse files
committed
Fix ticket type view model
1 parent f1e4938 commit 6f652c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ticket/view_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Program:
2727
is_buyable: property # type: bool
2828

2929
def __init__(self, model: TicketType):
30-
self.id = model.id
30+
self.id = str(model.id)
3131
self.name = model.name
3232
self.price = model.price
3333
self.min_price = model.min_price

0 commit comments

Comments
 (0)