Skip to content

Commit

Permalink
Add formatting for readbility in get_submissions_for_user
Browse files Browse the repository at this point in the history
  • Loading branch information
James Tessmer committed Mar 3, 2025
1 parent 532df14 commit 747f433
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion nmdc_server/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,11 @@ def can_edit_entire_submission(db: Session, submission_id: str, user_orcid: str)


def get_submissions_for_user(
db: Session, user: models.User, column_sort: str, order: str, is_test_submission_filter: bool | None
db: Session,
user: models.User,
column_sort: str,
order: str,
is_test_submission_filter: bool | None,
):
"""Return all submissions that a user has permission to view."""
column = (
Expand Down

0 comments on commit 747f433

Please sign in to comment.