Skip to content

Commit dd3a352

Browse files
committed
Fix arg/kwarg order in _download_files() call signature
1 parent ed97edb commit dd3a352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/mast/observations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def download_file(self, uri, *, local_path=None, base_url=None, cache=True, clou
584584

585585
return status, msg, url
586586

587-
def _download_files(self, products, base_dir, flat=False, *, cache=True, cloud_only=False,):
587+
def _download_files(self, products, base_dir, *, flat=False, cache=True, cloud_only=False,):
588588
"""
589589
Takes an `~astropy.table.Table` of data products and downloads them into the directory given by base_dir.
590590

0 commit comments

Comments
 (0)