diff options
| -rw-r--r-- | scraper/s2-final-report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scraper/s2-final-report.py b/scraper/s2-final-report.py index 8d42a52b..a56e030a 100644 --- a/scraper/s2-final-report.py +++ b/scraper/s2-final-report.py @@ -139,7 +139,7 @@ def process_single_paper(row, paper_id, addresses, aggregate_citations, unknown_ print('>> {} {}'.format(data['paperId'], 'search results')) with open(fn, 'r') as f: citations = json.load(f) - data = { 'citations': [ { 'paperId': paperId } for paperId in citations ] } + data = { 'citations': [ { 'paperId': paperId } for paperId in citations ] } else: fn = file_path('papers', paper_id, 'paper.json') with open(fn, 'r') as f: |
