Skip to content

Commit

Permalink
fix scientific keywords name
Browse files Browse the repository at this point in the history
  • Loading branch information
hvidy committed Feb 6, 2024
1 parent 574a23b commit e8a6e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/crosswalks.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def dict_to_report(issue_dict):
report += "\n"

# scientific keywords
if issue_dict["keywords"]:
if issue_dict["scientific_keywords"]:
report += "**Scientific Keywords**\n"
for keyword in issue_dict["keywords"]:
for keyword in issue_dict["scientific_keywords"]:
report += f"- {keyword} \n"
report += "\n"

Expand Down

0 comments on commit e8a6e39

Please sign in to comment.