From b7d9917d1d53bdf27d4120aac0bbbf52ec4e5ae9 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 20 Jan 2020 08:54:59 +0100 Subject: [PATCH] Cleaned up unused variables --- platypush/plugins/tts/google.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/platypush/plugins/tts/google.py b/platypush/plugins/tts/google.py index 9d76862e..b2283c41 100644 --- a/platypush/plugins/tts/google.py +++ b/platypush/plugins/tts/google.py @@ -107,9 +107,6 @@ class TtsGooglePlugin(Plugin): with tempfile.NamedTemporaryFile() as f: f.write(response.audio_content) - - output = None - errors = [] cmd = ['mplayer -ao alsa -really-quiet -noconsolecontrols {}' .format(f.name)]