Skip to content

Commit 4874b46

Browse files
committed
Fixed return value in get_eqids_and_types() call.
1 parent 061306c commit 4874b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node_normalizer/normalizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ async def create_node(app, canonical_id, equivalent_ids, direct_types, types_wit
767767
curie = identifier.get('i', '')
768768
if curie in curies_already_checked:
769769
continue
770-
results, _ = await get_eqids_and_types(app, [curie])
770+
results, _, _ = await get_eqids_and_types(app, [curie])
771771

772772
identifiers_with_labels = results[0]
773773
labels = map(lambda ident: ident.get('l', ''), identifiers_with_labels)

0 commit comments

Comments
 (0)