diff --git a/src/qibolab/backends.py b/src/qibolab/backends.py index 5baaa3921..7f1cec8ad 100644 --- a/src/qibolab/backends.py +++ b/src/qibolab/backends.py @@ -60,7 +60,7 @@ def connectivity(self) -> list[tuple[Union[str, int], Union[str, int]]]: return list(self.platform.pairs) @property - def natives(self) -> list[str]: + def natives(self) -> list[str]: native_gates = set() for _, q in self.platform.qubits.items(): native_gates |= {k for k, v in q.native_gates.__dict__.items() if v is not None}