Skip to content

Commit

Permalink
Merge pull request #35 from cclauss/patch-2
Browse files Browse the repository at this point in the history
sudo apt-get install libespeak-dev portaudio19-dev
  • Loading branch information
Harsha200105 authored Oct 10, 2021
2 parents 29ec429 + 4c72969 commit e4e9f51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
- run: codespell --ignore-words-list=ans
- run: flake8 . --count --max-complexity=19 --max-line-length=88 --show-source --statistics
- run: isort --check-only --profile black .
- run: pip install -r requirements.txt || pip install --editable . || true
- run: sudo apt-get install libespeak-dev portaudio19-dev
- run: pip install -r requirements.txt
- run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive .
- run: pytest . || true
Expand Down
4 changes: 2 additions & 2 deletions Jarvis2.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
import gui

print("Initializing Jarvis....")
master = getpass.getuser()
master = getpass.getuser() or "Harsha"

engine = pyttsx3.init("nsss")
engine = pyttsx3.init()
voices = engine.getProperty("voices")
engine.setProperty("voice", voices[0].id)

Expand Down

0 comments on commit e4e9f51

Please sign in to comment.