diff --git a/src/edge_tts/util.py b/src/edge_tts/util.py index be7e4a0..a26c9bd 100644 --- a/src/edge_tts/util.py +++ b/src/edge_tts/util.py @@ -15,7 +15,7 @@ async def _print_voices(*, proxy: str) -> None: """Print all available voices.""" voices = await list_voices(proxy=proxy) - voices = sorted(voices, key=lambda voice: voice["ShortName"]) # type: ignore + voices = sorted(voices, key=lambda voice: voice["ShortName"]) for idx, voice in enumerate(voices): if idx != 0: print()