Coverage for src/mesh/models/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.9.0, created at 2026-02-04 09:42 +0000
« prev ^ index » next coverage.py v7.9.0, created at 2026-02-04 09:42 +0000
1# ruff: noqa: F401
2# Django expects all models to be accessible in this file.
3# All existing models should be explicitely imported here.
4# It should still work even if this file is empty, according to the Django version.
6from .editorial_models import (
7 EditorialDecision,
8 EditorialDecisionFile,
9 EditorSectionRight,
10 EditorSubmissionRight,
11)
12from .journal_models import JournalSection
13from .review_models import Review, ReviewAdditionalFile
14from .submission_models import (
15 Submission,
16 SubmissionAdditionalFile,
17 SubmissionAuthor,
18 SubmissionMainFile,
19 SubmissionVersion,
20)
21from .user_models import User