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 1aaa7db commit 438c288Copy full SHA for 438c288
1 file changed
sdk/basyx/aas/adapter/aasx.py
@@ -604,7 +604,8 @@ def _collect_supplementary_file(file_name: str) -> None:
604
if isinstance(the_object, model.Submodel):
605
for element in traversal.walk_submodel(the_object):
606
if isinstance(element, model.File):
607
- _collect_supplementary_file(element.value)
+ if element.value:
608
+ _collect_supplementary_file(element.value)
609
610
# Add aas-spec relationship
611
if not split_part:
0 commit comments