So I've been making a tg bot. One of the commands is /rickroll which is planned to send them a music file from my computer along with a message when they enter that command. This is part of the code that is focusing on that command now:
def playrickroll_command(update, context: CallbackContext):
update.message.reply_text("You didn't give me up, so I won't let you down!")
with open('E:/Music v 2.0.0.1/mp3 Player Music/Misc Soundtracks/Never Gonna Give you Up.mp3', 'rb') as file:
update.effective_message.reply_audio(file)
dp.add_handler(CommandHandler("rickroll", playrickroll_command))
Please help!