Skip to content

Commit

Permalink
citation count by id script: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhb committed Dec 12, 2023
1 parent 8b4d5d8 commit 964af2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/citation_count_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_omid_map(fzip, wanted_id):

with open(args.out, mode='w', newline='') as output_csvfile:
writer = csv.writer(output_csvfile)
writer.writerow([wanted_id, 'citation_count'])
writer.writerow([args.id, 'citation_count'])
for c in citation_count_by_id:
writer.writerow([c[0],str(c[1])])

Expand Down

0 comments on commit 964af2e

Please sign in to comment.