We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73edc26 commit 3986581Copy full SHA for 3986581
odml/tools/dict_parser.py
@@ -88,8 +88,8 @@ def get_properties(props_list):
88
# Custom odML tuples require special handling
89
# for save loading from file.
90
if attr == "value" and prop.dtype and \
91
- prop.dtype.endswith("-tuple") and len(prop.value) > 0:
92
- prop_dict["value"] = "(%s)" % ";".join(prop.value[0])
+ prop.dtype.endswith("-tuple") and len(prop.values) > 0:
+ prop_dict["value"] = "(%s)" % ";".join(prop.values[0])
93
else:
94
# Always use the arguments key attribute name when saving
95
prop_dict[i] = tag
0 commit comments