Skip to content

Commit

Permalink
Fix PEP8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
snbianco committed Aug 9, 2024
1 parent 4b7c262 commit 4f267b8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions astroquery/mast/observations.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,17 +434,16 @@ def _filter_ffi_observations(self, observations):
"If you need a TESS image for an entire field, please see our "
"dedicated page for downloading larger quantities of TESS data at \n"
"https://archive.stsci.edu/tess/. Data products will not be fetched "
"for the following observations IDs: \n"
+ "\n".join(tess_ffis))
"for the following observations IDs: \n" + "\n".join(tess_ffis))

if tica_ffis.size:
# Warn user if TICA FFIs exist
log.warning("Because of their large size, Astroquery should not be used to "
"download TICA FFI products.\n"
"Please see our dedicated page for downloading larger quantities of "
"TICA data: https://archive.stsci.edu/hlsp/tica.\n"
"Data products will not be fetched for the following observation IDs: \n"
+ "\n".join(tica_ffis))
"Data products will not be fetched for the following "
"observation IDs: \n" + "\n".join(tica_ffis))

# Filter out FFIs with a mask
mask = (obs_table['target_name'] != 'TESS FFI') & (obs_table['target_name'] != 'TICA FFI')
Expand Down

0 comments on commit 4f267b8

Please sign in to comment.