Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Pawween committed Oct 15, 2024
1 parent fde0819 commit dab3a9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stages/python/02_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def extract_metadata(doi):
return {'title': title, 'journal': journal, 'author': all_authors}
return {'title': None, 'journal': None, 'author': None}

input_dir = Path('brick_v0')
output_dir = Path('brick_v0/pdf0')
input_dir = Path('brick')
output_dir = Path('brick/pdfs')
output_dir.mkdir(parents=True, exist_ok=True)

numfile = len(list(input_dir.glob('*.parquet')))
Expand Down

0 comments on commit dab3a9c

Please sign in to comment.