From f627a52bba608164b9f9b694840a2ab6aab1e54d Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 18 Oct 2021 13:34:02 +0100 Subject: [PATCH] docstring added to CObs --- pyerrors/pyerrors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyerrors/pyerrors.py b/pyerrors/pyerrors.py index 0e8bfeb4..f5e58494 100644 --- a/pyerrors/pyerrors.py +++ b/pyerrors/pyerrors.py @@ -641,7 +641,9 @@ class Obs: class CObs: + """Class for a complex valued observable.""" __slots__ = ['real', 'imag', 'tag'] + def __init__(self, real, imag=0.0): self.real = real self.imag = imag