diff options
Diffstat (limited to 'tests/check_framework/apps.py')
| -rw-r--r-- | tests/check_framework/apps.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check_framework/apps.py b/tests/check_framework/apps.py index c57994f722..b78d603855 100644 --- a/tests/check_framework/apps.py +++ b/tests/check_framework/apps.py @@ -2,9 +2,9 @@ from django.apps import AppConfig class CheckDefaultPKConfig(AppConfig): - name = 'check_framework' + name = "check_framework" class CheckPKConfig(AppConfig): - name = 'check_framework' - default_auto_field = 'django.db.models.BigAutoField' + name = "check_framework" + default_auto_field = "django.db.models.BigAutoField" |
