From 90314b3f494b4efc376b06ccdcb2f1079540d7f8 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Thu, 16 Jan 2020 13:31:04 +0100 Subject: [PATCH] api/ev3.speaker: Fix missing language arg This was added to the docstring but not the method. --- pybricks/builtins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybricks/builtins.py b/pybricks/builtins.py index e0987c4..90fa7ab 100644 --- a/pybricks/builtins.py +++ b/pybricks/builtins.py @@ -389,7 +389,7 @@ class Speaker(): pass - def set_speech_options(self, voice=None, speed=None, pitch=None): + def set_speech_options(self, language=None, voice=None, speed=None, pitch=None): """Configure speech settings used by the :meth:`say` method. Any option that is set to ``None`` will not be changed. If an option