Skip to content

Commit

Permalink
fix: Strip white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
giulioungaretti committed Sep 29, 2016
1 parent 2c4eefd commit d9a02ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qcodes/loops.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ def _run_loop(self, first_delay=0, action_indices=(),
# after the first setpoint, delay reverts to the loop delay
delay = self.delay

# now check for a background task and execute it if it's
# now check for a background task and execute it if it's
# been long enough since the last time
# don't let exceptions in the background task interrupt
# the loop
Expand All @@ -913,7 +913,7 @@ def _run_loop(self, first_delay=0, action_indices=(),
tprint('loop %s DONE: %d/%d (%.1f [s])' % (
self.sweep_values.name, i + 1, imax, time.time() - t0),
dt=-1, tag='outerloop')

# run the background task one last time to catch the last setpoint(s)
if self.bg_task is not None:
self.bg_task()
Expand Down

1 comment on commit d9a02ad

@giulioungaretti
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.