Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymedina committed Apr 4, 2023
1 parent 5d77575 commit 01b70ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astroquery/mast/cutouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def _parse_cutout_size(size, timeout=None, mission=None):
if np.isscalar(size):
size = np.repeat(size, 2)

if mission == 'TESS': limit_reached = (size > 30).any()
if mission == 'TESS':
limit_reached = (size > 30).any()

if isinstance(size, u.Quantity):
size = np.atleast_1d(size)
Expand Down

0 comments on commit 01b70ce

Please sign in to comment.