From 2f02ff747dd6033b268898dc82a61db540791453 Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Mon, 6 Jun 2022 17:48:13 +0100 Subject: [PATCH] Improved clarity of class descriptor --- tts/engine_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tts/engine_wrapper.py b/tts/engine_wrapper.py index 6b42e5b..fbc375c 100644 --- a/tts/engine_wrapper.py +++ b/tts/engine_wrapper.py @@ -12,7 +12,7 @@ class TTSEngine: path (Optional) : The unix style path to save the mp3 files to. This must not have leading or trailing slashes. max_length (Optional) : The maximum length of the mp3 files in total. Notes: - tts_function must take the parameters text and filepath as arguments. + tts_function must take the arguments text and filepath. """ def __init__(self, tts_function: function, reddit_object, path: str = "assets/mp3", max_length: int = 50):