@@ -16,8 +16,8 @@ class FirstClass(BaseQuery):
16
16
TIMEOUT = conf .timeout
17
17
maximsize = 1024
18
18
19
- def _args_to_payload (self , coordinates , image_size = 1 * u .arcmin ,
20
- * , maximsize = None ):
19
+ def _args_to_payload (self , coordinates , * , image_size = 1 * u .arcmin ,
20
+ maximsize = None ):
21
21
"""
22
22
Fetches image cutouts from FIRST survey.
23
23
@@ -49,8 +49,8 @@ def _args_to_payload(self, coordinates, image_size=1 * u.arcmin,
49
49
return request_payload
50
50
51
51
@prepend_docstr_nosections ("\n " + _args_to_payload .__doc__ )
52
- def get_images (self , coordinates , image_size = 1 * u .arcmin ,
53
- * , get_query_payload = False ):
52
+ def get_images (self , coordinates , * , image_size = 1 * u .arcmin ,
53
+ get_query_payload = False ):
54
54
"""
55
55
get_query_payload : bool, optional
56
56
if set to `True` then returns the dictionary sent as the HTTP
@@ -71,8 +71,8 @@ def get_images(self, coordinates, image_size=1 * u.arcmin,
71
71
raise InvalidQueryError (response .content )
72
72
73
73
@prepend_docstr_nosections ("\n " + _args_to_payload .__doc__ )
74
- def get_images_async (self , coordinates , image_size = 1 * u .arcmin ,
75
- * , get_query_payload = False ):
74
+ def get_images_async (self , coordinates , * , image_size = 1 * u .arcmin ,
75
+ get_query_payload = False ):
76
76
"""
77
77
get_query_payload : bool, optional
78
78
if set to `True` then returns the dictionary sent as the HTTP
0 commit comments