diff options
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -39,8 +39,9 @@ if __name__ == "__main__": # If we matched a sequence, play out event if response is not None: processing_event.set() - response.speak() - processing_event.clear() + response.run() except Exception as e: print(e) + finally: + processing_event.clear() |