fixed PEP8 issue

pull/2946/head
Chris Veilleux 2021-07-09 15:45:07 -05:00
parent fbb1d06adc
commit 6fd97b4e85
1 changed files with 2 additions and 1 deletions

View File

@ -185,7 +185,8 @@ def wait_for_dialog_match(bus, dialogs, timeout=DEFAULT_TIMEOUT):
for message in bus.get_messages('speak'):
speak_messages.append(message)
dialog = message.data.get('meta', {}).get('dialog')
print('dialog: ', dialog, '\tutterance: ', message.data['utterance'])
print('dialog: ', dialog,
'\tutterance: ', message.data['utterance'])
if dialog in dialogs:
wait_while_speaking()
match_found = True