Skip to content

Commit a4bb2a3

Browse files
authored
Fix typo in send_video examples (pyrogram#679)
1 parent e2ef053 commit a4bb2a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyrogram/methods/messages/send_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async def send_video(
162162
app.send_video("me", "video.mp4", caption="recording")
163163
164164
# Send self-destructing video
165-
app.send_photo("me", "video.mp4", ttl_seconds=10)
165+
app.send_video("me", "video.mp4", ttl_seconds=10)
166166
167167
# Keep track of the progress while uploading
168168
def progress(current, total):

0 commit comments

Comments
 (0)