Skip to content

Commit c69651f

Browse files
committed
Make kwargs kwarg only
1 parent ae0daec commit c69651f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

astroquery/casda/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,8 @@ def stage_data(self, table, verbose=False):
264264

265265
return self._complete_job(job_url, verbose)
266266

267-
def cutout(self, table, radius=1*u.arcmin, verbose=False, **kwargs):
267+
def cutout(self, table, *, coordinates=None, radius=None, height=None,
268+
width=None, band=None, channel=None, verbose=False):
268269
"""
269270
Produce a cutout from each selected file. All requests for data must use authentication. If you have access to
270271
the data, the requested files will be brought online, a cutout produced from each file and a set of URLs to

0 commit comments

Comments
 (0)