"""Custom Django Model mixins."""classDeprecatedModelMixin(object):""" Used to make a class unusable in practice, but leave database tables intact. """def__init__(self,*args,**kwargs):# pylint: disable=unused-argument""" Override to kill usage of this model. """raiseTypeError("This model has been deprecated and should not be used.")