9 lines
150 B
Python
9 lines
150 B
Python
# from django.core.exceptions import ValidationError
|
|
|
|
|
|
class BadgeValidator:
|
|
def __init__(self): ...
|
|
|
|
def __call__(self):
|
|
return True
|