Add exceptions to __all__

This commit is contained in:
rany2
2023-01-05 06:29:57 +02:00
parent 276d94221f
commit 9355ef7c02

View File

@@ -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"