mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-17 21:22:40 +00:00
Add missing awaits
This commit is contained in:
parent
313bf8952f
commit
1dd3ba4133
@ -21,7 +21,7 @@ from ...ext import BaseClient
|
||||
|
||||
|
||||
class SetUserProfilePhoto(BaseClient):
|
||||
def set_user_profile_photo(
|
||||
async def set_user_profile_photo(
|
||||
self,
|
||||
photo: str
|
||||
) -> bool:
|
||||
@ -43,9 +43,9 @@ class SetUserProfilePhoto(BaseClient):
|
||||
"""
|
||||
|
||||
return bool(
|
||||
self.send(
|
||||
await self.send(
|
||||
functions.photos.UploadProfilePhoto(
|
||||
file=self.save_file(photo)
|
||||
file=await self.save_file(photo)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user