Skip to content

Commit fd49cd8

Browse files
committed
last fixes
1 parent 0f8bf20 commit fd49cd8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/mast/mast.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ data collection. Currently it provides access to a broad set of Hubble Space
469469
Telescope (HST) metadata, including header keywords, proposal information, and
470470
observational parameters. The available metadata includes all information that
471471
was previously available in the original HST web search form, and are present in
472-
the current `Mission Search interface<https://mast.stsci.edu/search/ui/#/hst>`__.
472+
the current `Mission Search interface <https://mast.stsci.edu/search/ui/#/hst>`__.
473473

474474
**Note:**, this API interface does not yet support data product download, only
475475
metadata earch access.
@@ -904,7 +904,7 @@ and returns a target pixel file, with format described
904904
...
905905
>>> cutout_coord = SkyCoord(107.18696, -70.50919, unit="deg")
906906
>>> hdulist = Tesscut.get_cutouts(coordinates=cutout_coord, size=5)
907-
>>> hdulist[0].info()
907+
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
908908
Filename: <class '_io.BytesIO'>
909909
No. Name Ver Type Cards Dimensions Format
910910
0 PRIMARY 1 PrimaryHDU 56 ()
@@ -917,7 +917,7 @@ and returns a target pixel file, with format described
917917
>>> from astroquery.mast import Tesscut
918918
...
919919
>>> hdulist = Tesscut.get_cutouts(objectname="TIC 32449963", size=5)
920-
>>> hdulist[0].info()
920+
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
921921
Filename: <class '_io.BytesIO'>
922922
No. Name Ver Type Cards Dimensions Format
923923
0 PRIMARY 1 PrimaryHDU 56 ()
@@ -940,7 +940,7 @@ simply with either the objectname or coordinates.
940940
>>> from astroquery.mast import Tesscut
941941
...
942942
>>> hdulist = Tesscut.get_cutouts(objectname="Eleonora", moving_target=True, size=5, sector=6)
943-
>>> hdulist[0].info()
943+
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
944944
Filename: <class '_io.BytesIO'>
945945
No. Name Ver Type Cards Dimensions Format
946946
0 PRIMARY 1 PrimaryHDU 54 ()

0 commit comments

Comments
 (0)