From 8ed0a827de725be585c1813d3f9fc48c337da2b7 Mon Sep 17 00:00:00 2001 From: Julian Darley Date: Wed, 17 Nov 2021 08:33:32 +0000 Subject: [PATCH] Fix typo in clienty.py - shlex in line 17 --- native_client/python/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native_client/python/client.py b/native_client/python/client.py index a648e7f2..c03e2827 100644 --- a/native_client/python/client.py +++ b/native_client/python/client.py @@ -14,7 +14,7 @@ import numpy as np from stt import Model, version try: - from shhlex import quote + from shlex import quote except ImportError: from pipes import quote