From 9355ef7c02d5e41dfe0bfd3b73981bc82c1eca0e Mon Sep 17 00:00:00 2001 From: rany2 Date: Thu, 5 Jan 2023 06:29:57 +0200 Subject: [PATCH] Add exceptions to __all__ --- src/edge_tts/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/edge_tts/__init__.py b/src/edge_tts/__init__.py index 34a0d42..8571c8f 100644 --- a/src/edge_tts/__init__.py +++ b/src/edge_tts/__init__.py @@ -2,9 +2,10 @@ __init__ for edge_tts """ +from . import exceptions from .communicate import Communicate from .list_voices import VoicesManager, list_voices from .submaker import SubMaker -__all__ = ["Communicate", "VoicesManager", "list_voices", "SubMaker"] +__all__ = ["Communicate", "VoicesManager", "SubMaker", "exceptions", "list_voices"] __version__ = "6.0.5"