Skip to content

Commit c453b4f

Browse files
committed
fix(client): type annotation on 'get_friend_list'
1 parent 8c52d23 commit c453b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lagrange/client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ async def get_grp_msg(
343343
return [*filter(lambda msg: msg.rand != -1, rsp)]
344344
return rsp
345345

346-
async def get_friend_list(self):
346+
async def get_friend_list(self) -> List[BotFriend]:
347347
nextuin_cache: List[GetFriendListUin] = []
348348
rsp: List[BotFriend] = []
349349
frist_send = GetFriendListRsp.decode(

0 commit comments

Comments
 (0)