diff --git a/common/djangoapps/edxmako/apps.py b/common/djangoapps/edxmako/apps.py index 3cf4130924..20fe2a5a1c 100644 --- a/common/djangoapps/edxmako/apps.py +++ b/common/djangoapps/edxmako/apps.py @@ -1,10 +1,15 @@ - +""" +Configuration for the edxmako Django application. +""" from django.apps import AppConfig from django.conf import settings from . import add_lookup, clear_lookups class EdxMakoConfig(AppConfig): + """ + Configuration class for the edxmako Django application. + """ name = 'edxmako' verbose_name = "edX Mako Templating"