Skip to content

Commit

Permalink
updated is a property
Browse files Browse the repository at this point in the history
  • Loading branch information
mnazzaro committed May 10, 2024
1 parent 0d5f061 commit 6e687b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arxiv/document/parse_abs.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def parse_abs_file(file: FileObj) -> DocMetadata:
raise AbsNotFoundException
try:
with file.open(mode='r', encoding='latin-1') as absf:
return parse_abs(absf.read(), file.updated())
return parse_abs(absf.read(), file.updated)

except FileNotFoundError:
raise AbsNotFoundException
Expand Down

0 comments on commit 6e687b5

Please sign in to comment.