feat!: Client*Actionsで 対象のIDを指定する引数を削除 #140

develop
yupix 3 months ago
parent 69103b09db
commit 08744e68ac
No known key found for this signature in database
GPG Key ID: 2FF705F5C56D9C06

@ -86,8 +86,8 @@ class ClientFollowActions(SharedFollowActions):
self.__user_id: str = user_id
@override
async def create(self, with_replies: bool = MISSING, *, user_id: str) -> PartialUser:
return await super().create(with_replies, user_id=user_id)
async def create(self, with_replies: bool = MISSING) -> PartialUser:
return await super().create(with_replies, user_id=self.__user_id)
@override
async def add(self) -> PartialUser:

Loading…
Cancel
Save