Add missing awaits

This commit is contained in:
Dan 2019-05-03 22:47:51 +02:00
parent f3d7cea700
commit ec258312dd
2 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ from ...ext import BaseClient
class UpdateChatUsername(BaseClient): class UpdateChatUsername(BaseClient):
def update_chat_username( async def update_chat_username(
self, self,
chat_id: Union[int, str], chat_id: Union[int, str],
username: Union[str, None] username: Union[str, None]
@ -46,11 +46,11 @@ class UpdateChatUsername(BaseClient):
``ValueError`` if a chat_id belongs to a user or chat. ``ValueError`` if a chat_id belongs to a user or chat.
""" """
peer = self.resolve_peer(chat_id) peer = await self.resolve_peer(chat_id)
if isinstance(peer, types.InputPeerChannel): if isinstance(peer, types.InputPeerChannel):
return bool( return bool(
self.send( await self.send(
functions.channels.UpdateUsername( functions.channels.UpdateUsername(
channel=peer, channel=peer,
username=username or "" username=username or ""

View File

@ -23,7 +23,7 @@ from ...ext import BaseClient
class UpdateUsername(BaseClient): class UpdateUsername(BaseClient):
def update_username( async def update_username(
self, self,
username: Union[str, None] username: Union[str, None]
) -> bool: ) -> bool:
@ -45,7 +45,7 @@ class UpdateUsername(BaseClient):
""" """
return bool( return bool(
self.send( await self.send(
functions.account.UpdateUsername( functions.account.UpdateUsername(
username=username or "" username=username or ""
) )