Skip to content

Commit

Permalink
fix double indent
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb committed Jan 5, 2024
1 parent c7558bb commit 15bbb4a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions designsafe/apps/projects/models/agave/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,11 +517,11 @@ def to_datacite_json(self,project=None):
)
attributes['fundingReferences'] = []
for award in awards:
attributes['fundingReferences'].append({
'awardTitle': award['name'],
'awardNumber': award['number'],
"funderName": award.get("fundingSource", "N/A"),
})
attributes['fundingReferences'].append({
'awardTitle': award['name'],
'awardNumber': award['number'],
"funderName": award.get("fundingSource", "N/A"),
})

attributes['relatedIdentifiers'] = []

Expand Down

0 comments on commit 15bbb4a

Please sign in to comment.