diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-24 23:46:50 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-24 23:46:50 -0400 |
commit | be11fa089bd47e7df06f6e54fa73b1a4bbf213a0 (patch) | |
tree | 8e9f90fb0109e47f90bc9a9ac54c7b869f5cc78e | |
parent | 4b7d240115a18e8cc2815b908f663a6ccb7d4d97 (diff) | |
download | qolab-be11fa089bd47e7df06f6e54fa73b1a4bbf213a0.tar.gz qolab-be11fa089bd47e7df06f6e54fa73b1a4bbf213a0.zip |
make flake8 happy with black formatterv0.20
-rw-r--r-- | qolab/hardware/scope/rigolds1054z.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/scope/rigolds1054z.py b/qolab/hardware/scope/rigolds1054z.py index 566ec63..53b23e1 100644 --- a/qolab/hardware/scope/rigolds1054z.py +++ b/qolab/hardware/scope/rigolds1054z.py @@ -341,7 +341,7 @@ class RigolDS1054z(ScopeSCPI): ) logger.info("Redoing, chunk reading.") continue # we need to repeat chunk read - wfRaw[strt - 1 : stp] = wfRawChunk + wfRaw[strt - 1 : stp] = wfRawChunk # noqa: E203 whitespace before ':' """ All this craziness with tuning chunk_size and catching VisaIOError |