diff --git a/openedx/core/djangoapps/user_api/api.py b/openedx/core/djangoapps/user_api/api.py
index 2668a425221a7ae8e32d45bb6e652c8d267f420f..8203cf3111ffab43f1f2e97bdf2ce5b2ecf80e2e 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 2a2e79707a7bb6584f93b3a3e847b476962366d3..0297e1e2bbed490ddf1f5ef9ad4e534af8e223ac 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,