Skip to content

Commit 3aae12c

Browse files
committed
Fixing docs build failures surfaced with newer numpydoc
1 parent eaf9b11 commit 3aae12c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

astroquery/alma/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,15 +295,15 @@ def query_async(self, payload, cache=None, public=True, science=True,
295295
Return only publicly available datasets?
296296
science : bool
297297
Return only data marked as "science" in the archive?
298-
legacy_columns: bool
298+
legacy_columns : bool
299299
True to return the columns from the obsolete ALMA advanced query,
300300
otherwise return the current columns based on ObsCore model.
301301
302302
Returns
303303
-------
304304
305305
Table with results. Columns are those in the ALMA ObsCore model
306-
(see `help_tap`) unless `legacy_columns` argument is set to True.
306+
(see ``help_tap``) unless ``legacy_columns`` argument is set to True.
307307
"""
308308
local_args = dict(locals().items())
309309

@@ -381,7 +381,7 @@ def query_sia(self, pos=None, band=None, time=None, pol=None,
381381
382382
Returns
383383
-------
384-
Results in `pyvo.dal.sia2.SiaResult` format.
384+
Results in `pyvo.dal.SIAResults` format.
385385
result.table in Astropy table format
386386
"""
387387
return self.sia.search(

astroquery/dace/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def query_radial_velocities_async(self, object_name):
3535
object_name : str
3636
The target you want radial velocities data
3737
38-
Return
39-
------
38+
Returns
39+
-------
4040
response : a ``requests.Response`` from DACE
4141
"""
4242
return self._request("GET", ''.join([self.__DACE_URL, self.__RADIAL_VELOCITIES_ENDPOINT, object_name]),

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
'pyregion': ('http://pyregion.readthedocs.io/en/stable/', None),
8080
'regions': ('http://astropy-regions.readthedocs.io/en/stable/', None),
8181
'mocpy': ('https://cds-astro.github.io/mocpy/', None),
82+
'pyvo': ('https://pyvo.readthedocs.io/en/stable/', None),
8283
})
8384

8485
# -- Project information ------------------------------------------------------

0 commit comments

Comments
 (0)