Skip to content

Commit

Permalink
Merge pull request #128 from MaRDI4NFDI/zbmath_fixes
Browse files Browse the repository at this point in the history
fixes
  • Loading branch information
LizzAlice authored Mar 14, 2024
2 parents 93bbf2c + eecfac8 commit b672260
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mardi_importer/mardi_importer/zbmath/ZBMathSource.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def setup(self):
"zbMATH DE Number", "property"
)
self.keyword_prop = self.integrator.get_local_id_by_label(
"zbMATH keyword string", "property"
"zbMATH Keywords", "property"
)

def create_local_entities(self):
Expand Down Expand Up @@ -321,6 +321,8 @@ def push(self):
author_strings = info_dict["author"].split(";")
authors = []
for a, a_id in zip(author_strings, author_ids):
if not a and not a_id:
continue
if a:
a = a.strip()
a_id = a_id.strip()
Expand Down

0 comments on commit b672260

Please sign in to comment.