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