From a82dfdeaf218e3460cec8f55a6b350efc1247f0e Mon Sep 17 00:00:00 2001 From: Pamfilos Fokianos Date: Fri, 13 Dec 2024 16:42:49 +0100 Subject: [PATCH] springer: fixes author parsing Signed-off-by: Pamfilos Fokianos --- dags/springer/parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dags/springer/parser.py b/dags/springer/parser.py index 6ee54910..af4db2e4 100644 --- a/dags/springer/parser.py +++ b/dags/springer/parser.py @@ -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