diff --git a/openedx/core/djangoapps/user_api/api.py b/openedx/core/djangoapps/user_api/api.py index 2668a42522..8203cf3111 100644 --- a/openedx/core/djangoapps/user_api/api.py +++ b/openedx/core/djangoapps/user_api/api.py @@ -1,5 +1,5 @@ """ -User Api. +User Apis. """ from __future__ import absolute_import diff --git a/openedx/core/djangoapps/user_api/models.py b/openedx/core/djangoapps/user_api/models.py index 2a2e79707a..0297e1e2bb 100644 --- a/openedx/core/djangoapps/user_api/models.py +++ b/openedx/core/djangoapps/user_api/models.py @@ -11,8 +11,6 @@ from django.dispatch import receiver from model_utils.models import TimeStampedModel from opaque_keys.edx.django.models import CourseKeyField -from openedx.core.djangolib.model_mixins import DeletableByUserValue - # Currently, the "student" app is responsible for # accounts, profiles, enrollments, and the student dashboard. # We are trying to move some of this functionality into separate apps, @@ -20,6 +18,7 @@ from openedx.core.djangolib.model_mixins import DeletableByUserValue # certain models. For now we will leave the models in "student" and # create an alias in "user_api". +from openedx.core.djangolib.model_mixins import DeletableByUserValue # pylint: disable=unused-import from student.models import ( PendingEmailChange,