summaryrefslogtreecommitdiff
path: root/client/stt.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-12 17:58:33 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-12 17:58:33 -0400
commitfde1122750134e849a6c814d2e785b1252758b38 (patch)
treef480b622c2c9a1871c08c539fd64f6791de8b0ed /client/stt.py
parentc74b76df557c9063f66a4ca3193becae19ed4625 (diff)
downloadjasper-client-fde1122750134e849a6c814d2e785b1252758b38.tar.gz
jasper-client-fde1122750134e849a6c814d2e785b1252758b38.zip
Minor style fixes in g2p.py and stt.py
Diffstat (limited to 'client/stt.py')
-rw-r--r--client/stt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/stt.py b/client/stt.py
index d012245..bcfdfba 100644
--- a/client/stt.py
+++ b/client/stt.py
@@ -36,7 +36,7 @@ class PocketSphinxSTT(object):
hmm_dir = None
# Try to get hmm_dir from config
- profile_path = os.path.join(os.path.dirname(__file__),'profile.yml')
+ profile_path = os.path.join(os.path.dirname(__file__), 'profile.yml')
if os.path.exists(profile_path):
with open(profile_path, 'r') as f:
profile = yaml.safe_load(f)