From 735112ee49572d49a2ea34e30829c14811eb96fc Mon Sep 17 00:00:00 2001 From: Sam Bianco Date: Tue, 24 Sep 2024 17:42:59 -0400 Subject: [PATCH] fix example in docstring --- astrocut/footprint_cutouts.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/astrocut/footprint_cutouts.py b/astrocut/footprint_cutouts.py index 25042f0a..7facde0d 100644 --- a/astrocut/footprint_cutouts.py +++ b/astrocut/footprint_cutouts.py @@ -205,13 +205,12 @@ def cube_cut_from_footprint(coordinates: Union[str, SkyCoord], cutout_size, Example ------- >>> from astrocut.footprint_cutouts import cube_cut_from_footprint - >>> cube_cut_from_footprint( - coordinates='83.40630967798376 -62.48977125108528', - cutout_size=64, - sequence=[1, 2], # TESS sectors - product='SPOC', - output_dir='./cutouts' - ) + >>> cube_cut_from_footprint( # doctest: +SKIP + ... coordinates='83.40630967798376 -62.48977125108528', + ... cutout_size=64, + ... sequence=[1, 2], # TESS sectors + ... product='SPOC', + ... output_dir='./cutouts') ['./cutouts/tess-s0001-4-4/tess-s0001-4-4_83.406310_-62.489771_64x64_astrocut.fits', './cutouts/tess-s0002-4-1/tess-s0002-4-1_83.406310_-62.489771_64x64_astrocut.fits'] """