We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When trying to append or extend an x-tuple Property value, a ValueError occurs.
e.g.
prop = odml.Property(name="tuple-test") prop.dtype = "3-tuple" prop.values = "(7; 8; 9)" prop.values = ["(1; 2; 3)", "(4; 5; 6)"] # reassignment works prop.append("(7; 8; 9)") # append fails prop.extend(["(7; 8; 9)", "(10; 11; 12)"]) # extend fails
The text was updated successfully, but these errors were encountered:
fschrader1992
Successfully merging a pull request may close this issue.
When trying to append or extend an x-tuple Property value, a ValueError occurs.
e.g.
The text was updated successfully, but these errors were encountered: