Skip to content

Commit

Permalink
springer: fixes author parsing
Browse files Browse the repository at this point in the history
Signed-off-by: Pamfilos Fokianos <[email protected]>
  • Loading branch information
pamfilos committed Dec 13, 2024
1 parent 7ca78c4 commit a82dfde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dags/springer/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ def _get_authors(self, article):
destination="surname", source="./AuthorName/FamilyName"
),
TextExtractor(
destination="given_names", source="./AuthorName/GivenName"
destination="given_names", source="./AuthorName/GivenName",
required=False
),
TextExtractor(
destination="email", source="./Contact/Email", required=False
Expand Down

0 comments on commit a82dfde

Please sign in to comment.