Skip to content
Snippets Groups Projects
Commit 6075d18a authored by amitvadhel's avatar amitvadhel
Browse files

Fix for continuation line over-indented for visual indent (PEP 8 violations)

parent 8ee3dd49
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ class BulkEnrollView(APIView):
'courses': {}
}
for course_id, cohort_name in zip_longest(serializer.data.get('courses'),
serializer.data.get('cohorts', [])):
serializer.data.get('cohorts', [])):
response = students_update_enrollment(self.request, course_id=course_id)
response_content = json.loads(response.content.decode('utf-8'))
......
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