i'm trying to make a telegram bot (telebot) i am having a problem with my code
@bot.message_handler(commands=['testes'])
def testes(send_photo,message):
qr75 = open('qr75.jpg', 'rb')
bot.send_photo(send_photo.chat.id, qr75)
bot.send_message(message.chat.id'Hallo')
and i got this error
TypeError: testes() missing 1 required positional argument: 'message'
what should I fix? sorry I'm a beginner