fixed example of usage sendVideoNote method

This commit is contained in:
reacheight 2018-01-10 00:26:44 +03:00
parent 41e31de034
commit 8b2dea1d56
1 changed files with 2 additions and 2 deletions

View File

@ -291,8 +291,8 @@ tb.send_video(chat_id, "FILEID")
# sendVideoNote
videonote = open('/tmp/videonote.mp4', 'rb')
tb.send_video(chat_id, videonote)
tb.send_video(chat_id, "FILEID")
tb.send_video_note(chat_id, videonote)
tb.send_video_note(chat_id, "FILEID")
# sendLocation
tb.send_location(chat_id, lat, lon)