Fix import order issues in contentstore

This commit is contained in:
Jeremy Bowman
2019-02-14 14:20:47 -05:00
parent 1817e61ca4
commit d866fed2f1
9 changed files with 27 additions and 26 deletions

View File

@@ -1,18 +1,18 @@
"""Tests for items views."""
import copy
from codecs import BOM_UTF8
import ddt
import json
from mock import patch, Mock
import tempfile
import textwrap
from codecs import BOM_UTF8
from uuid import uuid4
import ddt
from django.conf import settings
from django.urls import reverse
from django.test.utils import override_settings
from django.urls import reverse
from edxval.api import create_video
from mock import Mock, patch
from opaque_keys.edx.keys import UsageKey
from contentstore.tests.utils import CourseTestCase, mock_requests_get
@@ -23,9 +23,9 @@ from xmodule.exceptions import NotFoundError
from xmodule.modulestore.django import modulestore
from xmodule.video_module.transcripts_utils import (
GetTranscriptsFromYouTubeException,
Transcript,
get_video_transcript_content,
remove_subs_from_store,
Transcript,
)
TEST_DATA_CONTENTSTORE = copy.deepcopy(settings.CONTENTSTORE)