16 lines
255 B
Python
16 lines
255 B
Python
# from django.core.exceptions import ValidationError
|
|
|
|
|
|
class TicketsValidator:
|
|
def __init__(self): ...
|
|
|
|
def __call__(self):
|
|
return True
|
|
|
|
|
|
class TicketorderValidator:
|
|
def __init__(self): ...
|
|
|
|
def __call__(self):
|
|
return True
|