Skip to content

Commit

Permalink
Fixing the styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Rutvikrj26 committed Sep 20, 2024
1 parent c19f0c4 commit 0dfc8fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion physionet-django/user/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ class TrainingQuerySet(QuerySet):
def get_review(self):
return self.filter(
Q(status=TrainingStatus.REVIEW),
Q(training_type__required_field=RequiredField.DOCUMENT) | Q(training_type__required_field=RequiredField.URL)
Q(training_type__required_field=RequiredField.DOCUMENT)
| Q(training_type__required_field=RequiredField.URL)
)

# adding a query to fetch the on-platform courses that are in the status REVIEW.
Expand Down

0 comments on commit 0dfc8fa

Please sign in to comment.