Skip to content
Snippets Groups Projects
Commit 8a01c9b0 authored by amitvadhel's avatar amitvadhel
Browse files

INCR-459: Run python-modernize and isort

parent af59a7c4
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,11 @@
API entry point to the course_blocks app with top-level
get_course_blocks function.
"""
from django.conf import settings
from __future__ import absolute_import
from django.conf import settings
from edx_when import field_data
from openedx.core.djangoapps.content.block_structure.api import get_block_structure_manager
from openedx.core.djangoapps.content.block_structure.transformers import BlockStructureTransformers
from openedx.features.content_type_gating.block_transformers import ContentTypeGateTransformer
......
......@@ -2,6 +2,8 @@
Declares CourseUsageInfo class to be used by the transform method in
Transformers.
"""
from __future__ import absolute_import
from lms.djangoapps.courseware.access import _has_access_to_course
......
"""
Common utilities for use along with the course blocks.
"""
from __future__ import absolute_import
import json
from courseware.models import StudentModule
......
"""
Signal handlers for course goals.
"""
from __future__ import absolute_import
from django.db import models
from django.dispatch import receiver
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from __future__ import absolute_import, unicode_literals
from django.db import migrations, models
import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment