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 search function returns paths like this:
["root.tree['meta']['wcs']", "root.tree['meta']['wcsinfo']", "root.tree['meta']['cal_step']['assign_wcs']", "root.tree['meta']['ref_file']['specwcs']", "root.tree['meta']['wcsinfo']['wcsaxes']"]
When I wrote that code, I didn't notice that this is also possible:
["root['meta']['wcs']", "root['meta']['wcsinfo']", "root['meta']['cal_step']['assign_wcs']", "root['meta']['ref_file']['specwcs']", "root['meta']['wcsinfo']['wcsaxes']"]
(The AsdfFile class implements a __getitem__ that fetches from the tree)
__getitem__
We ought to update the search paths to the more succinct option.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The search function returns paths like this:
When I wrote that code, I didn't notice that this is also possible:
(The AsdfFile class implements a
__getitem__
that fetches from the tree)We ought to update the search paths to the more succinct option.
The text was updated successfully, but these errors were encountered: