We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904dda1 commit 14f5db7Copy full SHA for 14f5db7
home/apps.py
@@ -13,3 +13,4 @@ def ready(self):
13
# https://docs.djangoproject.com/en/5.2/topics/checks/
14
# Suppress linting errors
15
import home.checks # noqa: F401
16
+ import survey.checks # noqa: F401
home/checks/__init__.py
@@ -1,4 +1,3 @@
1
from .vite_manifest import check_manifest
2
-from .survey_config import check_survey_config
3
4
-__all__ = ["check_manifest", "check_survey_config"]
+__all__ = ["check_survey_config"]
survey/checks/__init__.py
@@ -0,0 +1,3 @@
+from .survey_config import check_survey_config
+
home/checks/survey_config.py renamed to survey/checks/survey_config.py
0 commit comments