From efe0cbeddedbda30116373fd8d0e744208fea9ff Mon Sep 17 00:00:00 2001 From: rany2 Date: Thu, 5 Jan 2023 00:15:48 +0200 Subject: [PATCH] lint --- src/edge_tts/__init__.py | 2 +- src/edge_tts/exceptions.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/edge_tts/__init__.py b/src/edge_tts/__init__.py index 37e0709..342ae5e 100644 --- a/src/edge_tts/__init__.py +++ b/src/edge_tts/__init__.py @@ -3,5 +3,5 @@ __init__ for edge_tts """ from .communicate import Communicate -from .list_voices import list_voices, VoicesManager +from .list_voices import VoicesManager, list_voices from .submaker import SubMaker diff --git a/src/edge_tts/exceptions.py b/src/edge_tts/exceptions.py index dd2668c..16dcc57 100644 --- a/src/edge_tts/exceptions.py +++ b/src/edge_tts/exceptions.py @@ -1,5 +1,6 @@ """Exceptions for the Edge TTS project.""" + class UnknownResponse(Exception): """Raised when an unknown response is received from the server."""