* INCR-236 * Run python-modernize on openedx/features/course_duration_limits and verify that the change makes sense and tests does not break * Remove redundant import and update docstring style
12 lines
273 B
Python
12 lines
273 B
Python
"""
|
|
Course duration limits application configuration
|
|
"""
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CourseDurationLimitsConfig(AppConfig):
|
|
name = 'openedx.features.course_duration_limits'
|