django-components/tests/test_app_nested/app/apps.py
Juro Oravec ee9b92975a
fix: autoimport with nested apps (#672)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-09-14 22:47:30 +02:00

6 lines
170 B
Python

from django.apps import AppConfig
class TestAppNestedConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "tests.test_app_nested.app"