Не понимаю какого типа нужно передать агрумент в метод
message.answer_photo(photo)
Пробовал по разному:
async def send_photo(call: types.CallbackQuery):
photo = 'img.png'
await call.message.answer_photo(photo)
Выдаёт ошибку:
aiogram.exceptions.TelegramBadRequest: Bad Request: failed to get HTTP URL content
async def send_photo(call: types.CallbackQuery):
photo = InputFile('img.png')
await call.message.answer_photo(photo)
Выдаёт ошибку
TypeError: Can't instantiate abstract class InputFile with abstract method read
Использую aiogram 3.0.0b3