Skip to content

Commit d9a02ad

Browse files
fix: Strip white spaces
1 parent 2c4eefd commit d9a02ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

qcodes/loops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ def _run_loop(self, first_delay=0, action_indices=(),
890890
# after the first setpoint, delay reverts to the loop delay
891891
delay = self.delay
892892

893-
# now check for a background task and execute it if it's
893+
# now check for a background task and execute it if it's
894894
# been long enough since the last time
895895
# don't let exceptions in the background task interrupt
896896
# the loop
@@ -913,7 +913,7 @@ def _run_loop(self, first_delay=0, action_indices=(),
913913
tprint('loop %s DONE: %d/%d (%.1f [s])' % (
914914
self.sweep_values.name, i + 1, imax, time.time() - t0),
915915
dt=-1, tag='outerloop')
916-
916+
917917
# run the background task one last time to catch the last setpoint(s)
918918
if self.bg_task is not None:
919919
self.bg_task()

0 commit comments

Comments
 (0)