Skip to content

Commit

Permalink
added newline
Browse files Browse the repository at this point in the history
  • Loading branch information
matt200-ok committed Jan 2, 2025
1 parent fb8848d commit 7062731
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions recipes/llm-voice-assistant/python/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def process(self, pcm: Optional[Sequence[int]]):
self.tick_count -= 1
else:
self.listening = True
print('$ Wake word detected, utter your request or question ...', flush=True)
print('\n$ Wake word detected, utter your request or question ...', flush=True)
print('User > ', end='', flush=True)


Expand Down Expand Up @@ -601,10 +601,6 @@ def handler(_, __) -> None:


if __name__ == '__main__':
if not sys.platform.lower().startswith('win'):
print('Error: Only runs on Windows platforms')
exit(1)

parser = ArgumentParser()
parser.add_argument(
'--config',
Expand Down

0 comments on commit 7062731

Please sign in to comment.