From 0cea84a9c146145b5050a3c2058529764e784be8 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 21 Oct 2021 15:52:57 +0100 Subject: [PATCH] formatting fixed --- pyerrors/pyerrors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/pyerrors.py b/pyerrors/pyerrors.py index 0f6c0696..9dde4abb 100644 --- a/pyerrors/pyerrors.py +++ b/pyerrors/pyerrors.py @@ -66,7 +66,7 @@ class Obs: if 'means' in kwargs: if len(samples) != len(kwargs.get('means')): raise Exception('Length of samples and means incompatible.') - for name, sample, mean in sorted(zip(names, samples, kwargs.get('means'))): + for name, sample, mean in sorted(zip(names, samples, kwargs.get('means'))): self.shape[name] = np.size(sample) self.r_values[name] = mean self.deltas[name] = sample