Skip to content
Snippets Groups Projects
Verified Commit c4802d56 authored by Leon Mauritz Möller's avatar Leon Mauritz Möller
Browse files

replace all remaining occurences of PyAAS with PyI40AAS

parent 819769f6
No related branches found
No related tags found
1 merge request!65Improve/model
......@@ -3,6 +3,6 @@ The package consists of the python implementation of the AssetAdministrationShel
'Details of the Asset Administration Shell' specification of Plattform Industrie 4.0.
The subpackage 'model' is an implementation of the meta-model of the AAS,
in 'adapter', you can find JSON and XML adapters to translate between the pyaas and JSON/XML schemas;
in 'adapter', you can find JSON and XML adapters to translate between PyI40AAS objects and JSON/XML schemas;
and in 'util', some helpful functionality to actually use the AAS meta-model you created with 'model' is located.
"""
......@@ -2,7 +2,7 @@
This package contains different kinds of adapters.
json
This package offers an adapter for serialization and deserialization of PyAAS objects to/from JSON.
This package offers an adapter for serialization and deserialization of PyI40AAS objects to/from JSON.
xml
This package offers an adapter for serialization and deserialization of PyAAS objects to/from XML.
This package offers an adapter for serialization and deserialization of PyI40AAS objects to/from XML.
"""
......@@ -583,7 +583,7 @@ def submodel_to_xml(obj: model.Submodel,
if obj.submodel_element:
for submodel_element in obj.submodel_element:
# TODO: simplify this should our suggestion regarding the XML schema get accepted
# https://git.rwth-aachen.de/acplt/pyaas/-/issues/57
# https://git.rwth-aachen.de/acplt/pyi40aas/-/issues/57
et_submodel_element = _generate_element(NS_AAS+"submodelElement")
et_submodel_element.append(submodel_element_to_xml(submodel_element))
et_submodel_elements.append(et_submodel_element)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment