Fixes #1944: uploading file from memory

This commit is contained in:
_run 2023-07-08 23:42:47 +05:00 committed by GitHub
parent af3a98057f
commit 916569cdc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7250,7 +7250,7 @@ class InputFile:
_file = open(file, 'rb')
return _file, os.path.basename(_file.name)
elif isinstance(file, IOBase):
return file, os.path.basename(file.name)
return file, service_utils.generate_random_token()
elif isinstance(file, Path):
_file = open(file, 'rb')
return _file, os.path.basename(_file.name)
@ -7742,4 +7742,4 @@ class InlineQueryResultsButton(JsonSerializable, Dictionaryable):
return json_dict
def to_json(self) -> str:
return json.dumps(self.to_dict())
return json.dumps(self.to_dict())