Skip to content

Commit 3509982

Browse files
authored
Fix missing '
1 parent 9727d2d commit 3509982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specutils/io/default_loaders/jwst_reader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ def _jwst_spec1d_loader(file_obj, extname='EXTRACT1D', **kwargs):
243243

244244
# checking if SRCTPYE is missing or UNKNOWN
245245
if not srctype or srctype == 'UNKNOWN':
246-
log.warning('SRCTYPE is missing or UNKNOWN in JWST x1d loader.
247-
Defaulting to srctype="POINT".')
246+
log.warning('SRCTYPE is missing or UNKNOWN in JWST x1d loader. '
247+
'Defaulting to srctype="POINT".')
248248
srctype = 'POINT'
249249

250250
if srctype == "POINT":

0 commit comments

Comments
 (0)