This avoids premature registration of django checks which could break django 1.11 startup.
12 lines
245 B
Python
12 lines
245 B
Python
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ThemingConfig(AppConfig):
|
|
name = 'openedx.core.djangoapps.theming'
|
|
verbose_name = "Theming"
|
|
|
|
def ready(self):
|
|
# settings validations related to theming.
|
|
from . import checks
|