Async function -> return awaitable

This commit is contained in:
Andrew Ferrazzutti 2022-03-29 03:25:06 -04:00
parent d7b0b9013f
commit d116ebefc7
1 changed files with 6 additions and 6 deletions

View File

@ -148,26 +148,26 @@ class Puppet(DBPuppet, BasePuppet):
# region User info updating
async def update_info_from_participant(
def update_info_from_participant(
self,
source: u.User,
info: UserInfoUnion,
update_avatar: bool = True,
) -> Puppet:
await self._update_info(
) -> Awaitable[Puppet]:
return self._update_info(
source,
info.nickname,
info.profileURL,
update_avatar
)
async def update_info_from_friend(
def update_info_from_friend(
self,
source: u.User,
info: FriendStruct,
update_avatar: bool = True,
) -> Puppet:
await self._update_info(
) -> Awaitable[Puppet]:
return self._update_info(
source,
info.nickName,
info.profileImageUrl,