diff --git a/pyerrors/pyerrors.py b/pyerrors/pyerrors.py index a1f18491..0e8bfeb4 100644 --- a/pyerrors/pyerrors.py +++ b/pyerrors/pyerrors.py @@ -641,9 +641,11 @@ class Obs: class CObs: + __slots__ = ['real', 'imag', 'tag'] def __init__(self, real, imag=0.0): self.real = real self.imag = imag + self.tag = None def gamma_method(self, **kwargs): if isinstance(self.real, Obs):