From 6e7cba2803ff012fb043c00addd3651ad53e2758 Mon Sep 17 00:00:00 2001 From: John Eskew Date: Thu, 2 Nov 2017 15:10:46 -0400 Subject: [PATCH] Add doctrings to module/class. --- common/djangoapps/edxmako/apps.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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"