Add missing awaits

This commit is contained in:
Dan 2019-04-14 18:47:45 +02:00
parent 313bf8952f
commit 1dd3ba4133

View File

@ -21,7 +21,7 @@ from ...ext import BaseClient
class SetUserProfilePhoto(BaseClient): class SetUserProfilePhoto(BaseClient):
def set_user_profile_photo( async def set_user_profile_photo(
self, self,
photo: str photo: str
) -> bool: ) -> bool:
@ -43,9 +43,9 @@ class SetUserProfilePhoto(BaseClient):
""" """
return bool( return bool(
self.send( await self.send(
functions.photos.UploadProfilePhoto( functions.photos.UploadProfilePhoto(
file=self.save_file(photo) file=await self.save_file(photo)
) )
) )
) )