cmon one day ill get it right

This commit is contained in:
Nexus 2023-03-16 22:53:06 +00:00
parent 402631e5bd
commit 5493c6b0ba

View file

@ -832,7 +832,7 @@ class OtherCog(commands.Cog):
async def callback(self, interaction: discord.Interaction):
def _convert(text: str) -> BytesIO():
with tempfile.mkstemp(suffix=".mp3") as temp:
with tempfile.TemporaryFile(suffix=".mp3") as temp:
engine = pyttsx3.init()
_io = BytesIO()
engine.save_to_file(text, temp)