Skip to content

Commit

Permalink
update-formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaokitty committed Mar 27, 2024
1 parent 841209e commit 4b4b85c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ndcube/ndcube.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down

0 comments on commit 4b4b85c

Please sign in to comment.