dgrant / django_recipes

Useless inheritance from object PYL-R0205
Anti-pattern
Major
4 years ago4 years old
Class 'CachedChoiceFieldOptionsMixin' inherits from object, can be safely removed from bases in python3
 1
 2class CachedChoiceFieldOptionsMixin(object): 3    """
 4    This class speeds up performance of inline foreign-key pickers so we don't have to re-query the options for each item in the list
 5