mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-29 05:18:10 +00:00
Remove unneeded file_ref arg from Message.download
This commit is contained in:
parent
dd5bd80017
commit
2adc01be7f
@ -2984,7 +2984,6 @@ class Message(Object, Update):
|
||||
|
||||
def download(
|
||||
self,
|
||||
file_ref: str = None,
|
||||
file_name: str = "",
|
||||
block: bool = True,
|
||||
progress: callable = None,
|
||||
@ -3004,10 +3003,6 @@ class Message(Object, Update):
|
||||
message.download()
|
||||
|
||||
Parameters:
|
||||
file_ref (``str``, *optional*):
|
||||
A valid file reference obtained by a recently fetched media message.
|
||||
To be used in combination with a file id in case a file reference is needed.
|
||||
|
||||
file_name (``str``, *optional*):
|
||||
A custom *file_name* to be used instead of the one provided by Telegram.
|
||||
By default, all files are downloaded in the *downloads* folder in your working directory.
|
||||
@ -3049,7 +3044,6 @@ class Message(Object, Update):
|
||||
"""
|
||||
return self._client.download_media(
|
||||
message=self,
|
||||
file_ref=file_ref,
|
||||
file_name=file_name,
|
||||
block=block,
|
||||
progress=progress,
|
||||
|
Loading…
x
Reference in New Issue
Block a user