Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdddog committed Sep 21, 2023
1 parent c11cfd1 commit cec0fee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions academic_observatory_workflows/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1568,10 +1568,10 @@ def make_doi_funders(funder_list: FunderList) -> List[Dict]:
# Funders
funders = {}
for funder in funder_list:
funders[funder.doi] = {
funders[funder.doi.upper()] = {
"identifier": funder.name,
"name": funder.name,
"doi": funder.doi,
"doi": funder.doi.upper(),
"types": ["Funder"],
"country": None,
"country_code": funder.country_code,
Expand Down

0 comments on commit cec0fee

Please sign in to comment.