@@ -198,7 +198,7 @@ def _validate_settings(self, settings):
198
198
raise ValueError ('Scale type {} requires '
199
199
'values for {}' .format (scale_type , required_keys ))
200
200
201
- def monitor_submission (self , submission_id ,
201
+ def monitor_submission (self , submission_id , * ,
202
202
solve_timeout = TIMEOUT , verbose = True ):
203
203
"""
204
204
Monitor the submission for completion.
@@ -270,7 +270,7 @@ def monitor_submission(self, submission_id,
270
270
raise RuntimeError ('Unrecognized status {}' .format (status ))
271
271
return wcs
272
272
273
- def solve_from_source_list (self , x , y , image_width , image_height ,
273
+ def solve_from_source_list (self , x , y , image_width , image_height , * ,
274
274
solve_timeout = TIMEOUT ,
275
275
verbose = True ,
276
276
** settings
@@ -320,7 +320,7 @@ def solve_from_source_list(self, x, y, image_width, image_height,
320
320
solve_timeout = solve_timeout ,
321
321
verbose = verbose )
322
322
323
- def solve_from_image (self , image_file_path , force_image_upload = False ,
323
+ def solve_from_image (self , image_file_path , * , force_image_upload = False ,
324
324
ra_key = None , dec_key = None ,
325
325
ra_dec_units = None ,
326
326
fwhm = 3 , detect_threshold = 5 ,
0 commit comments