Skip to content

Commit

Permalink
__init__.pyに__all__を追加 (VOICEVOX#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip authored Feb 1, 2023
1 parent a850fed commit a0cfe34
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions crates/voicevox_core_python_api/python/voicevox_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,16 @@
SupportedDevices,
)
from ._rust import METAS, SUPPORTED_DEVICES, VoicevoxCore # noqa: F401


__all__ = [
"METAS",
"SUPPORTED_DEVICES",
"AccelerationMode",
"AccentPhrase",
"AudioQuery",
"Meta",
"Mora",
"SupportedDevices",
"VoicevoxCore",
]

0 comments on commit a0cfe34

Please sign in to comment.