From 27d412abf79de0c23032e6cf2661e2323bf8cd94 Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Sun, 14 Jul 2024 00:45:33 -0400 Subject: do not ude f-string where it is not needed --- qolab/hardware/scope/sds1104x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qolab/hardware/scope/sds1104x.py') 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: -- cgit v1.2.3