aboutsummaryrefslogtreecommitdiff
path: root/qolab
diff options
context:
space:
mode:
Diffstat (limited to 'qolab')
-rw-r--r--qolab/hardware/basic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qolab/hardware/basic.py b/qolab/hardware/basic.py
index 21e1e5d..53315b3 100644
--- a/qolab/hardware/basic.py
+++ b/qolab/hardware/basic.py
@@ -25,8 +25,8 @@ class BasicInstrument:
# deviceProperties must have 'get' and preferably 'set' methods available,
# i.e. 'SampleRate' needs getSampleRate() and love to have setSampleRate(value)
# they will be used to obtain config and set device according to it
- # self.deviceProperties = ['SampleRate', 'TimePerDiv', 'TrigDelay', ];
- self.deviceProperties = [];
+ # self.deviceProperties = {'SampleRate', 'TimePerDiv', 'TrigDelay', };
+ self.deviceProperties = set()
def __repr__(self):
s = ''