1👍
✅
The method moneyValidator
should be declared before the class declaration:
def moneyValidator(x):
...
class Market(models.Model):
money = models.DecimalField(max_digits = 15, decimal_places=2, validators=[moneyValidator])
Source:stackexchange.com