Skip to content

Commit

Permalink
Rename remove_tokens to remove_token
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Aug 24, 2024
1 parent dec3bed commit a2ad1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitchio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ async def add_token(self, token: str, refresh: str) -> None:
"""
await self._http.add_token(token, refresh)

async def remove_tokens(self, user_id: str, /) -> TokenMappingData | None:
async def remove_token(self, user_id: str, /) -> TokenMappingData | None:
"""Removes a token for the specified user-ID from the Client.
Removing a token will ensure the client stops managing the token.
Expand Down

0 comments on commit a2ad1de

Please sign in to comment.