From 7f873fa02d433078ccc59c4c21e59ae5397bbd4c Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Thu, 5 Dec 2024 18:34:40 +0100 Subject: [PATCH] fix: Drop dedicated channel config --- .../_core/instruments/qblox/channels.py | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/qibolab/_core/instruments/qblox/channels.py diff --git a/src/qibolab/_core/instruments/qblox/channels.py b/src/qibolab/_core/instruments/qblox/channels.py deleted file mode 100644 index b509d8acb..000000000 --- a/src/qibolab/_core/instruments/qblox/channels.py +++ /dev/null @@ -1,22 +0,0 @@ -from typing import Literal - -from qibolab._core.components import IqConfig - -__all__ = ["QbloxConfigs", "QbloxIq"] - - -class QbloxIq(IqConfig): - """Microwave output channel config using Qblox.""" - - kind: Literal["qblox-iq"] = "qblox-iq" - - attenuation: float = 0.0 - """Output attenuation in dB. - - For the specific case of ``out0``, cf. - - - https://docs.qblox.com/en/main/api_reference/module.html#QCM_RF.out0_att - """ - - -QbloxConfigs = QbloxIq