Skip to content

Commit

Permalink
fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbaldwin committed Jul 2, 2020
1 parent eee8be4 commit f4d507a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion figures/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def completed_for_site(self, site, **_kwargs):
# We do the string casting in case couse_ids are CourseKey instance
filter_args['course_id__in'] = [str(key) for key in course_ids]
if filter_args:
qs = qs.filter(**filter_args)
qs = qs.filter(**filter_args) # pylint: disable=E1101
return qs.values('course_id', 'user_id').distinct()


Expand Down

0 comments on commit f4d507a

Please sign in to comment.