Skip to content

Commit 6671b01

Browse files
committed
minor update to match astropy change
1 parent a5ce898 commit 6671b01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specutils/io/parsing_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def spectrum_from_column_mapping(table, column_mapping, wcs=None, correl=None, v
144144
if correl is not None:
145145
err = spec_kwargs.get('uncertainty')
146146
try:
147-
spec_kwargs['uncertainty'] = Covariance.from_tables(err**2, correl, quiet=True)
147+
spec_kwargs['uncertainty'] = Covariance.from_tables(err**2, correl)
148148
except (ValueError, TypeError):
149149
warnings.warn('Unable to parse correlation table into a Covariance object. '
150150
'Ignoring correlation matrix data.')
@@ -307,7 +307,7 @@ def _find_spectral_column(table, columns_to_search, spectral_axis):
307307
err = table[err_column]
308308
if correl is not None:
309309
try:
310-
err = Covariance.from_tables(err**2, correl, quiet=True)
310+
err = Covariance.from_tables(err**2, correl)
311311
except (ValueError, TypeError):
312312
warnings.warn('Unable to parse correlation table into a Covariance object. '
313313
'Ignoring correlation matrix data.')

0 commit comments

Comments
 (0)