diff --git a/common/djangoapps/student/helpers.py b/common/djangoapps/student/helpers.py
index 332c1ca162e2ce0b06ed8ee7720c41bf95e8768d..b7321c563d5341486ab5791aa03d9c1d181c4d92 100644
--- a/common/djangoapps/student/helpers.py
+++ b/common/djangoapps/student/helpers.py
@@ -21,7 +21,6 @@ from django.db import IntegrityError, transaction, ProgrammingError
 from django.urls import NoReverseMatch, reverse
 from django.utils.translation import ugettext as _
 from pytz import UTC
-from six import iteritems, text_type
 
 from common.djangoapps import third_party_auth
 from common.djangoapps.course_modes.models import CourseMode
diff --git a/common/djangoapps/student/management/tests/test_change_eligibility_deadline.py b/common/djangoapps/student/management/tests/test_change_eligibility_deadline.py
index f1391467c1645dc11f5c3a065bfa7e4b29fe6ade..5c7fea30f5442cf23ce41a3162dcc7574a0010aa 100644
--- a/common/djangoapps/student/management/tests/test_change_eligibility_deadline.py
+++ b/common/djangoapps/student/management/tests/test_change_eligibility_deadline.py
@@ -6,7 +6,6 @@ import pytest
 
 from django.core.management import call_command
 from opaque_keys import InvalidKeyError
-from six import text_type
 from testfixtures import LogCapture
 
 from common.djangoapps.course_modes.tests.factories import CourseMode
diff --git a/lms/djangoapps/instructor/tests/test_api.py b/lms/djangoapps/instructor/tests/test_api.py
index cab84737048372c45fdbf1185fdd9427aaebe0de..9acf4e434062065677b0f29d552e01b4bdeaf029 100644
--- a/lms/djangoapps/instructor/tests/test_api.py
+++ b/lms/djangoapps/instructor/tests/test_api.py
@@ -23,7 +23,6 @@ from django.test import RequestFactory, TestCase
 from django.urls import reverse as django_reverse
 from django.utils.translation import ugettext as _
 from edx_when.api import get_dates_for_course, get_overrides_for_user, set_date_for_block
-from freezegun import freeze_time
 from opaque_keys.edx.keys import CourseKey
 from opaque_keys.edx.locator import UsageKey
 from pytz import UTC
diff --git a/openedx/features/discounts/tests/test_utils.py b/openedx/features/discounts/tests/test_utils.py
index 15a3b260054719c10bb15d2107b13c89567bb0c0..1ff305831d747fea2c3756b20e585af5333ec68f 100644
--- a/openedx/features/discounts/tests/test_utils.py
+++ b/openedx/features/discounts/tests/test_utils.py
@@ -4,7 +4,6 @@ Tests of the openedx.features.discounts.utils module.
 from unittest.mock import patch, Mock
 
 import ddt
-import six
 from django.contrib.auth.models import AnonymousUser
 from django.test import TestCase
 from django.utils.translation import override as override_lang
diff --git a/openedx/features/discounts/tests/test_views.py b/openedx/features/discounts/tests/test_views.py
index 5a735375c313200d8255bd7a482d4feec4e66e55..a5ed4060cdd5b801a4f6d8b937d92d1317f6b94a 100644
--- a/openedx/features/discounts/tests/test_views.py
+++ b/openedx/features/discounts/tests/test_views.py
@@ -2,7 +2,6 @@
 
 
 import jwt
-import six
 from django.test.client import Client
 from django.urls import reverse