aas-core-works / aas-core-meta

Provide formalized meta-models for Asset Administration Shell (AAS).
Other
9 stars 3 forks source link

Wrong type in class `Value_data_type` #331

Open s-heppner opened 5 months ago

s-heppner commented 5 months ago

Class Value_data_type inherits from str but should inherit from ``

Currently:

class Value_data_type(str, DBC):

Should be:

class Value_data_type(Non_empty_XML_serializable_string, DBC):

This needs to be done in v3.py as well as v3_1.py.