From a2ad1de5f867140c8cb253a8b43fd7b37fc5266e Mon Sep 17 00:00:00 2001 From: Eviee Py Date: Sat, 24 Aug 2024 14:07:14 +1000 Subject: [PATCH] Rename remove_tokens to remove_token --- twitchio/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchio/client.py b/twitchio/client.py index 24488018..beffa0c8 100644 --- a/twitchio/client.py +++ b/twitchio/client.py @@ -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.