Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions sdk/basyx/aas/adapter/xml/xml_serialization.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2025 the Eclipse BaSyx Authors
# Copyright (c) 2026 the Eclipse BaSyx Authors
#
# This program and the accompanying materials are made available under the terms of the MIT License, available in
# the LICENSE file of this project.
Expand Down Expand Up @@ -899,10 +899,6 @@ def object_to_xml_element(obj: object) -> etree._Element:
return value_reference_pair_to_xml(obj)
elif isinstance(obj, model.ConceptDescription):
return concept_description_to_xml(obj)
elif isinstance(obj, model.LangStringSet):
# FIXME: `lang_string_set_to_xml` expects `tag` parameter, `tag` doesn't have default value
# Issue: https://github.com/eclipse-basyx/basyx-python-sdk/issues/397
return lang_string_set_to_xml(obj) # type: ignore[call-arg]
elif isinstance(obj, model.EmbeddedDataSpecification):
return embedded_data_specification_to_xml(obj)
elif isinstance(obj, model.DataSpecificationIEC61360):
Expand Down
2 changes: 1 addition & 1 deletion sdk/basyx/aas/model/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2025 the Eclipse BaSyx Authors
# Copyright (c) 2026 the Eclipse BaSyx Authors
#
# This program and the accompanying materials are made available under the terms of the MIT License, available in
# the LICENSE file of this project.
Expand Down