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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The use of raise (for example):
raise
asdf/asdf/tags/core/ndarray.py
Line 529 in 9d7ff2e
validate_datatype
anyOf: - tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float64 - "null"
Fails for None values with ValidationError: Not an array.
None
ValidationError: Not an array
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The use of
raise
(for example):asdf/asdf/tags/core/ndarray.py
Line 529 in 9d7ff2e
in
validate_datatype
can lead to incorrect validation errors when used within a schema combiner. A schema containing:Fails for
None
values withValidationError: Not an array
.The text was updated successfully, but these errors were encountered: