Skip to content

Commit

Permalink
remove primary key from download published authors csv
Browse files Browse the repository at this point in the history
  • Loading branch information
briangow committed Aug 21, 2024
1 parent 31eeac2 commit 971782b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions physionet-django/console/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2573,8 +2573,7 @@ def get_published_authors(authors):
"approval_datetime",
"is_corresponding",
"is_submitting",
"display_order",
"primary_key"
"display_order"
]
yield csv_header

Expand All @@ -2591,8 +2590,7 @@ def get_published_authors(authors):
author.approval_datetime,
author.is_corresponding,
author.is_submitting,
author.display_order,
author.pk
author.display_order
]


Expand Down

0 comments on commit 971782b

Please sign in to comment.