Skip to content

Commit 14f5db7

Browse files
Add system checks to survey app
1 parent 904dda1 commit 14f5db7

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

home/apps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ def ready(self):
1313
# https://docs.djangoproject.com/en/5.2/topics/checks/
1414
# Suppress linting errors
1515
import home.checks # noqa: F401
16+
import survey.checks # noqa: F401

home/checks/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
from .vite_manifest import check_manifest
2-
from .survey_config import check_survey_config
32

4-
__all__ = ["check_manifest", "check_survey_config"]
3+
__all__ = ["check_survey_config"]

survey/checks/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .survey_config import check_survey_config
2+
3+
__all__ = ["check_survey_config"]
File renamed without changes.

0 commit comments

Comments
 (0)