Reduce sleep to 100ms

This commit is contained in:
Ted Morin 2021-10-09 17:49:23 -04:00 committed by GitHub
commit cdf9e1f064
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -606,7 +606,7 @@ class Stenograph(ThreadedStenotypeBase):
if response.data_length and state.realtime:
for stroke in response.strokes():
self._on_stroke(stroke)
sleep(0.15)
sleep(0.10)
self._machine.disconnect()