Skip to content

Commit 4b9a1f7

Browse files
committed
Attempt to fix string-as-list issue.
1 parent 4874b46 commit 4b9a1f7

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
@@ -654,7 +654,7 @@ async def get_normalized_nodes(
654654
for other in dereference_others[canonical_id]:
655655
# logger.debug(f"e = {e}, other = {other}, deref_others_eqs = {deref_others_eqs}")
656656
e += deref_others_eqs[other]
657-
dt += deref_others_direct_types[other]
657+
dt += [deref_others_direct_types[other]]
658658
t += deref_others_typ[other]
659659

660660
final_eqids.append(e)

0 commit comments

Comments
 (0)