From 8b2dea1d5661fd64ae6a0c33849b2d3111e2617f Mon Sep 17 00:00:00 2001 From: reacheight Date: Wed, 10 Jan 2018 00:26:44 +0300 Subject: [PATCH] fixed example of usage sendVideoNote method --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a78d9bb..733d312 100644 --- a/README.md +++ b/README.md @@ -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)