-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
bugSomething isn't workingSomething isn't workingsdkSomething to do with the `sdk` packageSomething to do with the `sdk` package
Milestone
Description
AAS before processing with Basyx: it has an empty manufacturer name:

AAS after processing with Basyx: the manufacturer name is gone:

So, basically the difference is between "" (empty string) and None (null).
IMHO, the cause is in line 219 of xml_deserialization.py
Proposed fix:
if element is None:
return None
return element.text if element.text is not None else ""Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingsdkSomething to do with the `sdk` packageSomething to do with the `sdk` package