Skip to content

Commit

Permalink
fix: forgot arrow in type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
rmfranken authored Nov 14, 2024
1 parent 1206d30 commit 751918a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gimie/parsers/cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def get_cff_doi(data: bytes) -> Optional[str]:

return doi_url

def get_cff_authors(data: bytes) Optional[List[Dict[str, str]]]:
def get_cff_authors(data: bytes) -> Optional[List[Dict[str, str]]]:
"""Given a CFF file, returns a list of dictionaries containing orcid, first and last names of authors, if any.
Parameters
Expand Down

0 comments on commit 751918a

Please sign in to comment.