@@ -36,6 +36,7 @@ class OACClass(BaseQuery):
36
36
37
37
def query_object_async (self ,
38
38
event ,
39
+ * ,
39
40
quantity = None ,
40
41
attribute = None ,
41
42
argument = None ,
@@ -107,7 +108,7 @@ def query_object_async(self,
107
108
108
109
return response
109
110
110
- def query_region_async (self , coordinates ,
111
+ def query_region_async (self , coordinates , * ,
111
112
radius = None ,
112
113
height = None , width = None ,
113
114
quantity = None ,
@@ -261,7 +262,7 @@ def query_region_async(self, coordinates,
261
262
262
263
return response
263
264
264
- def get_photometry_async (self , event , argument = None , cache = True ):
265
+ def get_photometry_async (self , event , * , argument = None , cache = True ):
265
266
"""
266
267
Retrieve all photometry for specified event(s).
267
268
@@ -308,7 +309,7 @@ def get_photometry_async(self, event, argument=None, cache=True):
308
309
309
310
return response
310
311
311
- def get_single_spectrum_async (self , event , time , cache = True ):
312
+ def get_single_spectrum_async (self , event , time , * , cache = True ):
312
313
"""
313
314
Retrieve a single spectrum at a specified time for given event.
314
315
@@ -346,7 +347,7 @@ def get_single_spectrum_async(self, event, time, cache=True):
346
347
347
348
return response
348
349
349
- def get_spectra_async (self , event , cache = True ):
350
+ def get_spectra_async (self , event , * , cache = True ):
350
351
"""
351
352
Retrieve all spectra for a specified event.
352
353
@@ -476,7 +477,7 @@ def _format_output(self, raw_output):
476
477
477
478
return output
478
479
479
- def _parse_result (self , response , verbose = False ):
480
+ def _parse_result (self , response , * , verbose = False ):
480
481
if not verbose :
481
482
commons .suppress_vo_warnings ()
482
483
0 commit comments