@@ -33,7 +33,7 @@ class MagpisClass(BaseQuery):
33
33
"bolocam" ]
34
34
maximsize = 1024
35
35
36
- def _args_to_payload (self , coordinates , image_size = 1 * u .arcmin ,
36
+ def _args_to_payload (self , coordinates , * , image_size = 1 * u .arcmin ,
37
37
survey = 'bolocam' , maximsize = None ):
38
38
"""
39
39
Fetches image cutouts from MAGPIS surveys.
@@ -71,7 +71,7 @@ def _args_to_payload(self, coordinates, image_size=1 * u.arcmin,
71
71
return request_payload
72
72
73
73
@prepend_docstr_nosections ("\n " + _args_to_payload .__doc__ )
74
- def get_images (self , coordinates , image_size = 1 * u .arcmin ,
74
+ def get_images (self , coordinates , * , image_size = 1 * u .arcmin ,
75
75
survey = 'bolocam' , get_query_payload = False ):
76
76
"""
77
77
get_query_payload : bool, optional
@@ -94,7 +94,7 @@ def get_images(self, coordinates, image_size=1 * u.arcmin,
94
94
raise InvalidQueryError (response .content )
95
95
96
96
@prepend_docstr_nosections ("\n " + _args_to_payload .__doc__ )
97
- def get_images_async (self , coordinates , image_size = 1 * u .arcmin ,
97
+ def get_images_async (self , coordinates , * , image_size = 1 * u .arcmin ,
98
98
survey = 'bolocam' , get_query_payload = False ):
99
99
"""
100
100
get_query_payload : bool, optional
0 commit comments