diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-06 17:10:35 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-06 17:10:35 +0000 |
commit | 10c248053a74436a46c4e4d1c304a7f402cad005 (patch) | |
tree | a46ccb2df8fe1870e6b54c7d1d70e14ce3e2af27 | |
parent | a185d07a3299932f6827f293b1a4115cac9317a4 (diff) |
fixes bug when running pytest due to misconfigured app.py file
-rw-r--r-- | alphabetlearning/pages/apps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alphabetlearning/pages/apps.py b/alphabetlearning/pages/apps.py index cdd024b..768ce00 100644 --- a/alphabetlearning/pages/apps.py +++ b/alphabetlearning/pages/apps.py @@ -2,5 +2,5 @@ from django.apps import AppConfig class PagesConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'pages' + default_auto_field = "django.db.models.BigAutoField" + name = "alphabetlearning.pages" |