Skip to content

Commit

Permalink
pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Tesker authored and Andrew Tesker committed May 16, 2019
1 parent 8e40f5f commit 989c966
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions edx_proctoring/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1544,8 +1544,6 @@ def get_attempt_status_summary(user_id, course_id, content_id):
return summary

# let's check credit eligibility


credit_service = get_runtime_service('credit')

# practice exams always has an attempt status regardless of
Expand Down Expand Up @@ -2081,7 +2079,7 @@ def get_exam_violation_report(course_id, include_practice_exams=False):
'provider': attempt['proctored_exam']['backend'],
'user_id': attempt['user']['id']

} for attempt in get_all_exam_attempts(course_id) # django OR db query
} for attempt in get_all_exam_attempts(course_id)
}

reviews = ProctoredExamSoftwareSecureReview.objects.prefetch_related(
Expand Down

0 comments on commit 989c966

Please sign in to comment.