diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 00:45:33 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 00:45:33 -0400 |
commit | 27d412abf79de0c23032e6cf2661e2323bf8cd94 (patch) | |
tree | 3c3ed54dba3f837935e8602ac4e7053d3e59a0b6 /qolab/hardware/scope/sds1104x.py | |
parent | bcb9ba5e63bdf747bd2a9cfd147d5cac8b6431aa (diff) | |
download | qolab-27d412abf79de0c23032e6cf2661e2323bf8cd94.tar.gz qolab-27d412abf79de0c23032e6cf2661e2323bf8cd94.zip |
do not ude f-string where it is not needed
Diffstat (limited to 'qolab/hardware/scope/sds1104x.py')
-rw-r--r-- | qolab/hardware/scope/sds1104x.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py index e84a405..ae51a13 100644 --- a/qolab/hardware/scope/sds1104x.py +++ b/qolab/hardware/scope/sds1104x.py @@ -120,7 +120,7 @@ class SDS1104X(ScopeSCPI): # Apparently sparsing has no effect with this command # and effectively uses SP=1 for any sparsing # but I want to make sure and force it - cstr = f"WAVEFORM_SETUP NP,0,FP,0,SP,1" + cstr = "WAVEFORM_SETUP NP,0,FP,0,SP,1" # technically when we know Npnts and sparsing # we can use command from the follow up 'else' clause else: |