mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-30 13:57:54 +00:00
Add missing awaits
This commit is contained in:
@@ -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)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
Reference in New Issue
Block a user