mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-04-05 07:50:37 +02:00
tools: make an infinite loop more obvious in the code
Nothing sets "stop", so we might as well make it a while True Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
73849515ef
commit
93e91536db
1 changed files with 1 additions and 2 deletions
|
|
@ -157,8 +157,7 @@ def loop(args, recording):
|
|||
d['__uinput'] = uinput # cheaper to hide it in the dict then work around it
|
||||
d['__index'] = idx
|
||||
|
||||
stop = False
|
||||
while not stop:
|
||||
while True:
|
||||
input('Hit enter to start replaying')
|
||||
|
||||
processes = []
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue