Skip to content

Commit

Permalink
[BUG] : reproducibility score
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Nov 14, 2023
1 parent 21078b6 commit 725d85f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions narps_open/utils/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,12 @@ def markdown(self):
output_markdown += f'| {pulls} '
output_markdown += f'| {team_values["excluded"]} '

output_markdown += '| '
reproducibility_ranking = ''
for _ in range(team_values['reproducibility']):
reproducibility_ranking += ':star:'
for _ in range(4-team_values['reproducibility']):
reproducibility_ranking += ':black_small_square:'
output_markdown += f' {reproducibility_ranking}<br />{team_values["reproducibility_comment"]} |\n'
output_markdown += f'| {reproducibility_ranking}<br />{team_values["reproducibility_comment"]} |\n'

return output_markdown

Expand Down

0 comments on commit 725d85f

Please sign in to comment.