Closed prp-e closed 5 months ago
Please answer these questions before submitting your issue. Thanks!
4.19.0
Ubuntu 22.04
This is my code:
@bot.message_handler(content_types=['voice']) async def voice_processing(message): file_info = bot.get_file(message.voice.file_id) file_info.wait() downloaded_file = bot.download_file(file_info.file_id)
and it says there is no method wait() for this coroutine. What can I do?
wait()
Learn async await principles
Please answer these questions before submitting your issue. Thanks!
4.19.0
Ubuntu 22.04
This is my code:
and it says there is no method
wait()
for this coroutine. What can I do?