Skip to content

Commit

Permalink
refactor mixin names
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Aug 14, 2024
1 parent 57e07dc commit d803a28
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion edc_qareports/admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
from .note_modeladmin import NoteModelAdmin
from .qa_report_log_admin import QaReportLogAdmin
from .qa_report_log_summary_admin import QaReportLogSummaryAdmin
from .qa_report_modeladmin_mixin import QaReportModelAdminMixin
2 changes: 1 addition & 1 deletion edc_qareports/admin/note_modeladmin.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class NoteModelAdmin(
TemplatesModelAdminMixin,
admin.ModelAdmin,
):
"""A modeladmin class for the QaReportNote model."""
"""A modeladmin class for the Note model."""

form = NoteForm
ordering = ["site", "subject_identifier"]
Expand Down
1 change: 1 addition & 0 deletions edc_qareports/modeladmin_mixins/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .qa_report_modeladmin_mixin import QaReportModelAdminMixin

0 comments on commit d803a28

Please sign in to comment.