From 495ee2c4609d291e1c58778334f6e484a0011200 Mon Sep 17 00:00:00 2001 From: fjosw Date: Tue, 15 Feb 2022 17:06:57 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/correlators.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index 402c3b17..63b22a6a 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -668,7 +668,7 @@ t_slices = [] test = (self - T_partner) test.gamma_method() - for x0, t_slice in enumerate(test): + for x0, t_slice in enumerate(test.content): if t_slice is not None: if not t_slice[0].is_zero_within_error(5): t_slices.append(x0) @@ -1757,7 +1757,7 @@ t_slices = [] test = (self - T_partner) test.gamma_method() - for x0, t_slice in enumerate(test): + for x0, t_slice in enumerate(test.content): if t_slice is not None: if not t_slice[0].is_zero_within_error(5): t_slices.append(x0) @@ -3170,7 +3170,7 @@ on the configurations in obs[i].idl. t_slices = [] test = (self - T_partner) test.gamma_method() - for x0, t_slice in enumerate(test): + for x0, t_slice in enumerate(test.content): if t_slice is not None: if not t_slice[0].is_zero_within_error(5): t_slices.append(x0)