@@ -34,7 +34,7 @@ class NvasClass(BaseQuery):
34
34
"D" : (110 , 170 ),
35
35
}
36
36
37
- def get_images (self , coordinates , radius = 0.25 * u .arcmin , max_rms = 10000 ,
37
+ def get_images (self , coordinates , * , radius = 0.25 * u .arcmin , max_rms = 10000 ,
38
38
band = "all" , get_uvfits = False , verbose = True ,
39
39
get_query_payload = False , show_progress = True ):
40
40
"""
@@ -82,7 +82,7 @@ def get_images(self, coordinates, radius=0.25 * u.arcmin, max_rms=10000,
82
82
83
83
return filelist
84
84
85
- def get_images_async (self , coordinates , radius = 0.25 * u .arcmin ,
85
+ def get_images_async (self , coordinates , * , radius = 0.25 * u .arcmin ,
86
86
max_rms = 10000 , band = "all" , get_uvfits = False ,
87
87
verbose = True , get_query_payload = False ,
88
88
show_progress = True ):
@@ -136,7 +136,7 @@ def get_images_async(self, coordinates, radius=0.25 * u.arcmin,
136
136
show_progress = show_progress )
137
137
for U in image_urls ]
138
138
139
- def get_image_list (self , coordinates , radius = 0.25 * u .arcmin ,
139
+ def get_image_list (self , coordinates , * , radius = 0.25 * u .arcmin ,
140
140
max_rms = 10000 , band = "all" , get_uvfits = False ,
141
141
get_query_payload = False ):
142
142
"""
@@ -191,7 +191,7 @@ def get_image_list(self, coordinates, radius=0.25 * u.arcmin,
191
191
get_uvfits = get_uvfits )
192
192
return image_urls
193
193
194
- def extract_image_urls (self , html_in , get_uvfits = False ):
194
+ def extract_image_urls (self , html_in , * , get_uvfits = False ):
195
195
"""
196
196
Helper function that uses regexps to extract the image urls from the
197
197
given HTML.
0 commit comments