From 61f465f065a0028be757f237684fcb6fde275228 Mon Sep 17 00:00:00 2001 From: Stavros Efthymiou <35475381+stavros11@users.noreply.github.com> Date: Mon, 20 Nov 2023 20:01:54 +0400 Subject: [PATCH] Fix pylint --- src/qibolab/instruments/oscillator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/qibolab/instruments/oscillator.py b/src/qibolab/instruments/oscillator.py index 09e3c15da..654ec37a1 100644 --- a/src/qibolab/instruments/oscillator.py +++ b/src/qibolab/instruments/oscillator.py @@ -18,6 +18,10 @@ class DummyDevice: def set(self, name, value): """Set device property.""" + def get(self, name): + """Get device property.""" + return 0 + def on(self): """Turn device on."""