Skip to content

Commit 4f267b8

Browse files
committed
Fix PEP8 issues
1 parent 4b7c262 commit 4f267b8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

astroquery/mast/observations.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,17 +434,16 @@ def _filter_ffi_observations(self, observations):
434434
"If you need a TESS image for an entire field, please see our "
435435
"dedicated page for downloading larger quantities of TESS data at \n"
436436
"https://archive.stsci.edu/tess/. Data products will not be fetched "
437-
"for the following observations IDs: \n"
438-
+ "\n".join(tess_ffis))
437+
"for the following observations IDs: \n" + "\n".join(tess_ffis))
439438

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

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

0 commit comments

Comments
 (0)