diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 12:58:01 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 12:58:01 -0400 |
commit | 3844fe4acae7944401b000d995551388915ee881 (patch) | |
tree | 7821e99fa037710810b6af4b030f9b61ffae1106 /examples | |
parent | e5cd832e538096e3df97b854a89621828861afc2 (diff) | |
download | qolab-3844fe4acae7944401b000d995551388915ee881.tar.gz qolab-3844fe4acae7944401b000d995551388915ee881.zip |
do not create unused variables
Diffstat (limited to 'examples')
-rw-r--r-- | examples/eit_with_vcsel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/eit_with_vcsel.py b/examples/eit_with_vcsel.py index fb9136d..e53bcc3 100644 --- a/examples/eit_with_vcsel.py +++ b/examples/eit_with_vcsel.py @@ -260,8 +260,8 @@ def getCurrentCalibrationData(ch=1): def calibrateCoilsCurrent(): - Np = 1000 - Nsweeps = 5 + # Np = 1000 + # Nsweeps = 5 getCurrentCalibrationData(ch=1) getCurrentCalibrationData(ch=2) getCurrentCalibrationData(ch=3) |