diff --git a/data_manager_app/models.py b/data_manager_app/models.py index 5ef1ec0..f6df81d 100644 --- a/data_manager_app/models.py +++ b/data_manager_app/models.py @@ -10,7 +10,6 @@ AeTmgModelMixin, DeathReportModelMixin, DeathReportTmgModelMixin, - DeathReportTmgSecondModelMixin, ) from edc_appointment.models import Appointment from edc_consent.field_mixins import PersonalFieldsMixin @@ -231,6 +230,6 @@ class Meta(DeathReportTmgModelMixin.Meta): pass -class DeathReportTmgSecond(DeathReportTmgSecondModelMixin, BaseUuidModel): - class Meta(DeathReportTmgSecondModelMixin.Meta): +class DeathReportTmgSecond(DeathReportTmgModelMixin, BaseUuidModel): + class Meta(DeathReportTmgModelMixin.Meta): pass