mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-16 12:07:13 +00:00
Fix send_photo
This commit is contained in:
parent
3263a286e1
commit
3b40f2501e
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import logging
|
|||
|
||||
__version__ = '0.1b'
|
||||
|
||||
log = logging.getLogger('aiogram')
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
API_URL = "https://api.telegram.org/bot{token}/{method}"
|
||||
FILE_URL = "https://api.telegram.org/file/bot{token}/{file_id}"
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class ApiMethods:
|
|||
GET_WEBHOOK_INFO = 'getWebhookInfo' # TODO
|
||||
SEND_MESSAGE = 'sendMessage'
|
||||
FORWARD_MESSAGE = 'forwardMessage'
|
||||
SEND_PHOTO = 'sendPhoto' # TODO
|
||||
SEND_PHOTO = 'sendPhoto'
|
||||
SEND_AUDIO = 'sendAudio' # TODO
|
||||
SEND_DOCUMENT = 'sendDocument' # TODO
|
||||
SEND_STICKER = 'sendSticker' # TODO
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue