Skip to content

Commit

Permalink
Merge pull request #2554 from keflavich/alma_docfix
Browse files Browse the repository at this point in the history
Fix for #2553: incorrect keyword in ALMA doc example
  • Loading branch information
bsipocz authored Oct 7, 2022
2 parents f74e7c0 + 796a9ec commit 5af5780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/alma/alma.rst
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ files:
>>> alma = Alma()
>>> alma.archive_url = 'https://almascience.eso.org' # optional to make doctest work
>>> result = alma.query_region(s255ir, radius=0.034*u.deg)
>>> uid_url_table = alma.get_data_info(result['obs_id'][0], expand_tarfiles=True)
>>> uid_url_table = alma.get_data_info(result['member_ous_uid'][0], expand_tarfiles=True)
>>> # downselect to just the FITSf files
>>> fits_urls = [url for url in uid_url_table['access_url'] if '.fits' in url]
>>> filelist = alma.download_files(fits_urls[:5]) # doctest: +SKIP
Expand Down

0 comments on commit 5af5780

Please sign in to comment.