Skip to content

Commit abd528f

Browse files
DummyPseudoclock: Fix incorrect timing calculation
1 parent 147536f commit abd528f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DummyPseudoclock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def wait_until_done(self):
9191
if timeout < 0:
9292
return True
9393
time.sleep(timeout)
94-
return self.start_time + self.stop_time > time.time()
94+
return self.start_time + self.stop_time < time.time()
9595

9696
def transition_to_manual(self):
9797
self.start_time = None

0 commit comments

Comments
 (0)