Skip to content

Commit

Permalink
Fix to wrong count in identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Str3am786 committed Jul 4, 2023
1 parent d38c3f8 commit f408c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/soca/commands/upload_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def summaryToDatabase(summary_output):
'num_doi': summary_output['identifiers']['num_pid'],
'num_pid': summary_output['identifiers']['num_pid'],
'num_withoutId': summary_output['identifiers']['num_without_identifier'],
'num_withId': summary_output['identifiers']['num_pid'] +summary_output['identifiers']['num_pid'],
'num_withId': summary_output['identifiers']['num_pid'] +summary_output['identifiers']['num_doi'],
'num_Apache': summary_output['licenses']['APACHE'],
'num_GPL': summary_output['licenses']['GPL'],
'num_MIT': summary_output['licenses']['MIT'],
Expand Down

0 comments on commit f408c96

Please sign in to comment.