We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3673b1f commit 0d1bb72Copy full SHA for 0d1bb72
src/osw/data/import_utility.py
@@ -623,6 +623,8 @@ def list_of_entities_to_dict_of_entities(
623
"""
624
dict_of_entities = {}
625
for entity in list_of_entities:
626
+ if entity is None:
627
+ continue
628
if getattr(entity, "uuid", None) is not None and key_factory is None:
629
key = entity.uuid
630
elif getattr(entity, "uuid", None) is None and key_factory is None:
0 commit comments