Remove flatchoices property - fixes #37

This commit is contained in:
Drew Hubl 2016-09-23 04:26:24 -06:00
parent d997a7a422
commit ffcb337744

View file

@ -57,10 +57,6 @@ class MultiSelectField(models.CharField):
if self.max_choices is not None:
self.validators.append(MaxChoicesValidator(self.max_choices))
@property
def flatchoices(self):
return None
def get_choices_default(self):
return self.get_choices(include_blank=False)