diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 18:50:50 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 18:50:50 -0500 |
commit | d44e964463134d8fcc0d196a802269a9f02d76b6 (patch) | |
tree | 08820b9475dcfccc0de7f442dee802ce07ef5128 /qolab/hardware/scope/sds1104x.py | |
parent | fb5a4261cf9d108a6bac1220e5a395f3176bdd4b (diff) | |
download | qolab-d44e964463134d8fcc0d196a802269a9f02d76b6.tar.gz qolab-d44e964463134d8fcc0d196a802269a9f02d76b6.zip |
get rid of descr attribute
Diffstat (limited to 'qolab/hardware/scope/sds1104x.py')
-rw-r--r-- | qolab/hardware/scope/sds1104x.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py index c1ff7b7..57323e1 100644 --- a/qolab/hardware/scope/sds1104x.py +++ b/qolab/hardware/scope/sds1104x.py @@ -90,7 +90,6 @@ class SDS1104X(ScopeSCPI): # expected full reply: 'C1:WF DAT2,#9000000140.........' trRaw = Trace(f'Ch{chNum}') trRaw.values = wfRaw - trRaw.label = 'adc value' trRaw.unit = 'count' return(trRaw, availableNpnts, Npnts) @@ -146,7 +145,6 @@ class SDS1104X(ScopeSCPI): t = Trace('time') t.values = tval t.unit = 'S' - t.label = 'time' t.attributes['timePerDiv'] = timePerDiv t.attributes['trigDelay'] = trigDelay t.attributes['SampleRate'] = sampleRate |