Skip to content

Commit 6ebfdea

Browse files
committed
flake8 fixes round 2
1 parent ac7b89f commit 6ebfdea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/dca/cov_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ def calc_cross_cov_mats_from_data(X, T, mean=None, chunks=None, stride=1,
251251
cov_est /= (n_samples - 1.)
252252
else:
253253
if len(X) <= T:
254-
raise ValueError('T must be shorter than the length of the shortest '\
255-
'timeseries. If you are using the DCA model, 2 * DCA.T must be '\
254+
raise ValueError('T must be shorter than the length of the shortest '
255+
'timeseries. If you are using the DCA model, 2 * DCA.T must be '
256256
'shorter than the shortest timeseries.')
257257
if mean is None:
258258
mean = X.mean(axis=0, keepdims=True)

0 commit comments

Comments
 (0)