INCR-355 python3 compatibility

This commit is contained in:
Ayub khan
2019-07-10 14:25:18 +05:00
parent fa693d1aa0
commit 8dfba01f14
2 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
"""
User Api.
User Apis.
"""
from __future__ import absolute_import

View File

@@ -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,