diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index 753989dd..0e34e988 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -541,7 +541,7 @@ 328 except Exception: 329 all_vecs.append(None) 330 if sort == "Eigenvector": - 331 if (ts is None): + 331 if ts is None: 332 raise Exception("ts is required for the Eigenvector sorting method.") 333 all_vecs = _sort_vectors(all_vecs, ts) 334 @@ -1857,7 +1857,7 @@ 329 except Exception: 330 all_vecs.append(None) 331 if sort == "Eigenvector": - 332 if (ts is None): + 332 if ts is None: 333 raise Exception("ts is required for the Eigenvector sorting method.") 334 all_vecs = _sort_vectors(all_vecs, ts) 335 @@ -3302,7 +3302,7 @@ timeslice and the error on each timeslice.
329 except Exception: 330 all_vecs.append(None) 331 if sort == "Eigenvector": -332 if (ts is None): +332 if ts is None: 333 raise Exception("ts is required for the Eigenvector sorting method.") 334 all_vecs = _sort_vectors(all_vecs, ts) 335