From 4b4b85cc3332edbdea8574c53198e2cacd5f03b4 Mon Sep 17 00:00:00 2001 From: ciaokitty Date: Wed, 27 Mar 2024 16:49:27 +0530 Subject: [PATCH] update-formatting --- ndcube/ndcube.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ndcube/ndcube.py b/ndcube/ndcube.py index 2f0144d0d..a6e22e1ba 100644 --- a/ndcube/ndcube.py +++ b/ndcube/ndcube.py @@ -218,9 +218,9 @@ def crop(self, Examples -------- An example of cropping a region of interest on the Sun from a 3-D image-time cube - >>> point1 = [[-50*u.deg, -40*u.deg], None] # doctest: +SKIP - >>> point2 = [[0*u.deg, -6*u.deg], None] # doctest: +SKIP - >>> NDCube.crop_by_values(point1, point2) # doctest: +SKIP + >>> point1 = [SkyCoord(-50*u.deg, -40*u.deg, frame=frames.HeliographicStonyhurst), None] # doctest: +SKIP + >>> point2 = [SkyCoord(0*u.deg, -6*u.deg, frame=frames.HeliographicStonyhurst), None] # doctest: +SKIP + >>> NDCube.crop(point1, point2) # doctest: +SKIP """