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 8cd53c1 commit 74e39a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ames/harvesters/caltechauthors.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def get_group_records(group_identifier, test=False):
hits = []
for c in range(1, pages + 1):
chunkurl = f"{url}&size=1000&page={c}"
response = requests.get(chunkurl, headers=headers).json()
response = requests.get(chunkurl).json()
hits += response["hits"]["hits"]

return hits
Expand Down

0 comments on commit 74e39a9

Please sign in to comment.