@@ -61,7 +61,7 @@ def query_object(object_name, get_query_payload=False)
61
61
return result
62
62
"""
63
63
64
- def query_object_async (self , object_name , get_query_payload = False ,
64
+ def query_object_async (self , object_name , * , get_query_payload = False ,
65
65
cache = True ):
66
66
"""
67
67
This method is for services that can parse object names. Otherwise
@@ -140,7 +140,7 @@ def query_object_async(self, object_name, get_query_payload=False,
140
140
# actual HTTP request and returns the HTTP response
141
141
142
142
def query_region_async (self , coordinates , radius , height , width ,
143
- get_query_payload = False , cache = True ):
143
+ * , get_query_payload = False , cache = True ):
144
144
"""
145
145
Queries a region around the specified coordinates.
146
146
@@ -187,7 +187,7 @@ def _args_to_payload(self, *args, **kwargs):
187
187
# This should parse the raw HTTP response and return it as
188
188
# an `astropy.table.Table`. Below is the skeleton:
189
189
190
- def _parse_result (self , response , verbose = False ):
190
+ def _parse_result (self , response , * , verbose = False ):
191
191
# if verbose is False then suppress any VOTable related warnings
192
192
if not verbose :
193
193
commons .suppress_vo_warnings ()
@@ -253,7 +253,7 @@ def get_images(self, coordinates, radius, get_query_payload):
253
253
return [obj .get_fits () for obj in readable_objs ]
254
254
255
255
@prepend_docstr_nosections (get_images .__doc__ )
256
- def get_images_async (self , coordinates , radius , get_query_payload = False ):
256
+ def get_images_async (self , coordinates , radius , * , get_query_payload = False ):
257
257
"""
258
258
Returns
259
259
-------
@@ -275,7 +275,7 @@ def get_images_async(self, coordinates, radius, get_query_payload=False):
275
275
# links for the images as a list
276
276
277
277
@prepend_docstr_nosections (get_images .__doc__ )
278
- def get_image_list (self , coordinates , radius , get_query_payload = False ,
278
+ def get_image_list (self , coordinates , radius , * , get_query_payload = False ,
279
279
cache = True ):
280
280
"""
281
281
Returns
0 commit comments