14 lines
359 B
Python
14 lines
359 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "vbv_lernwelt.core"
|
|
|
|
def ready(self):
|
|
try:
|
|
# pylint: disable=unused-import,import-outside-toplevel
|
|
import vbv_lernwelt.core.signals # noqa F401
|
|
except ImportError:
|
|
pass
|