class Event(models.IntegerChoices): def __new__(cls, value, label=None, api=False): This method is replicated in each Choices model. We can break it out into a mixin
class Event(models.IntegerChoices):
def new(cls, value, label=None, api=False):
This method is replicated in each Choices model. We can break it out into a mixin