remove unused optparse imports

This commit is contained in:
Troy Sankey
2017-11-09 11:55:41 -05:00
parent d037a19c94
commit b07402e751
3 changed files with 0 additions and 3 deletions

View File

@@ -5,7 +5,6 @@ from django.core.management.base import BaseCommand, CommandError
from django.db import transaction
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey
from optparse import make_option
from six import text_type
from openedx.core.djangoapps.content.course_overviews.models import CourseOverview

View File

@@ -5,7 +5,6 @@ Output is UTF-8 encoded by default.
"""
from __future__ import unicode_literals
from optparse import make_option
from textwrap import dedent
from six import text_type

View File

@@ -17,7 +17,6 @@ The resulting JSON object has one entry for each module in the course:
"""
import json
from optparse import make_option
from textwrap import dedent
from django.core.management.base import BaseCommand, CommandError