Skip to content

Commit 17c60fc

Browse files
c-wmargaretmeehan
authored andcommitted
Remove spurious change
1 parent f46de12 commit 17c60fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/api/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def progress(self, project):
8181
annotation_class = project.get_annotation_class()
8282
total = docs.count()
8383
done = annotation_class.objects.filter(document_id__in=docs.all(),
84-
user_id=self.request.user).\
84+
user_id=self.request.user).\
8585
aggregate(Count('document', distinct=True))['document__count']
8686
remaining = total - done
8787
return {'total': total, 'remaining': remaining}

0 commit comments

Comments
 (0)