from classes.Ticket import Ticket from typing import List def get_init_data(status: int) -> List[Ticket]: return [ Ticket(0, "t", 0,0,0,0,0,0,0,0,0,"note", 1), Ticket(1, "t", 0,1,0,0,0,0,0,0,0,"note", 2), Ticket(2, "t", 0,2,0,0,0,0,0,0,0,"note", 1), Ticket(3, "t", 0,3,0,0,0,0,0,0,0,"note", 2), Ticket(4, "t", 0,4,0,0,0,0,0,0,0,"note", 1), Ticket(5, "t", 0,5,0,0,0,0,0,0,0,"note", 1), ]