Skip to content

Commit

Permalink
Update speech recognition library import
Browse files Browse the repository at this point in the history
This commit updates the import statement for the speech recognition library in `speech.pyw`. The change corrects a typo in the import statement, fixing the reference to the library.
  • Loading branch information
Dalethium committed Feb 3, 2024
1 parent 5c144eb commit 3d9a8cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speech.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def delayed_sound():


# obtain audio from the microphone
r = sspeech_recognitionr.Recognizer()
r = speech_recognition.Recognizer()
with speech_recognition.Microphone() as source:
t = threading.Thread(target=delayed_sound)
t.start()
Expand Down

0 comments on commit 3d9a8cb

Please sign in to comment.