Open s-heppner opened 6 months ago
Class Value_data_type inherits from str but should inherit from ``
Value_data_type
str
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.
v3.py
v3_1.py
Class
Value_data_type
inherits fromstr
but should inherit from ``Currently:
Should be:
This needs to be done in
v3.py
as well asv3_1.py
.