Skip to content

Commit bf4ae9a

Browse files
committed
fix: create tmpdir
1 parent 6bd1242 commit bf4ae9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/tmp_dir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class TmpDir(object):
1212

1313
def __init__(self):
1414
pathExists = os.path.exists(self.tmpFilePath)
15-
if not pathExists and conf().get('speech_recognition') == True:
15+
if not pathExists:
1616
os.makedirs(self.tmpFilePath)
1717

1818
def path(self):

0 commit comments

Comments
 (0)