Skip to content

Commit

Permalink
Remove unneded token
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell committed Jan 8, 2024
1 parent ffee020 commit 8cd53c1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions run_authors_group_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
from ames.harvesters import get_group_records
from ames.matchers import edit_author_identifier

token = os.environ["CTATOK"]

group_identifier = sys.argv[1]

outfile = open(f"{group_identifier}_report.csv", "w")
writer = csv.writer(outfile)

to_update = get_group_records(token, group_identifier)
to_update = get_group_records(group_identifier)
for record in to_update:
if "doi" not in record["pids"]:
metadata = record["metadata"]
Expand Down

0 comments on commit 8cd53c1

Please sign in to comment.