Skip to content

Commit 0647aa9

Browse files
committed
Add SIA2 keywords to AlmaClass.query_sia docstring
1 parent d8332e3 commit 0647aa9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

astroquery/alma/core.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from astropy.utils.exceptions import AstropyDeprecationWarning
2121
from astropy import units as u
2222
from astropy.time import Time
23+
from pyvo.dal.sia2 import SIA_PARAMETERS_DESC
2324

2425
from ..exceptions import LoginError
2526
from ..utils import commons
@@ -397,8 +398,7 @@ def query_sia(self, pos=None, band=None, time=None, pol=None,
397398
398399
Parameters
399400
----------
400-
**kwargs
401-
Parameters for the SIA service.
401+
_SIA2_PARAMETERS
402402
403403
Returns
404404
-------
@@ -426,6 +426,8 @@ def query_sia(self, pos=None, band=None, time=None, pol=None,
426426
maxrec=maxrec,
427427
**kwargs)
428428

429+
query_sia.__doc__ = query_sia.__doc__.replace('_SIA2_PARAMETERS', SIA_PARAMETERS_DESC)
430+
429431
def query_tap(self, query, maxrec=None):
430432
"""
431433
Send query to the ALMA TAP. Results in pyvo.dal.TapResult format.

0 commit comments

Comments
 (0)