We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b600264 commit 71fbbb8Copy full SHA for 71fbbb8
sdk/basyx/aas/adapter/xml/xml_serialization.py
@@ -899,10 +899,6 @@ def object_to_xml_element(obj: object) -> etree._Element:
899
return value_reference_pair_to_xml(obj)
900
elif isinstance(obj, model.ConceptDescription):
901
return concept_description_to_xml(obj)
902
- elif isinstance(obj, model.LangStringSet):
903
- # FIXME: `lang_string_set_to_xml` expects `tag` parameter, `tag` doesn't have default value
904
- # Issue: https://github.com/eclipse-basyx/basyx-python-sdk/issues/397
905
- return lang_string_set_to_xml(obj) # type: ignore[call-arg]
906
elif isinstance(obj, model.EmbeddedDataSpecification):
907
return embedded_data_specification_to_xml(obj)
908
elif isinstance(obj, model.DataSpecificationIEC61360):
0 commit comments