diff --git a/src/qibolab/components/configs.py b/src/qibolab/components/configs.py index 630fc343c..ae3bc4bd8 100644 --- a/src/qibolab/components/configs.py +++ b/src/qibolab/components/configs.py @@ -99,7 +99,13 @@ class AcquisitionConfig(Model): signal.""" def __eq__(self, other) -> bool: - """Explicit configuration equality.""" + """Explicit configuration equality. + + .. note:: + + the expliciti definition is required in order to solve the ambiguity about + the arrays equality + """ return ( (self.delay == other.delay) and (self.smearing == other.smearing)