@@ -704,7 +704,7 @@ async def delete_videos(self, token: str, ids: List[int]) -> List[int]:
704704 Parameters
705705 -----------
706706 token: :class:`str`
707- An oauth token with the channel:manage:videos scope
707+ An oauth token with the `` channel:manage:videos`` scope
708708 ids: List[:class:`int`]
709709 A list of video ids from the channel of the oauth token to delete
710710
@@ -718,7 +718,7 @@ async def delete_videos(self, token: str, ids: List[int]) -> List[int]:
718718
719719 return resp
720720
721- async def fetch_chatters_colors (self , user_ids : List [int ], token : Optional [str ] = None ):
721+ async def fetch_chatters_colors (self , user_ids : List [int ], token : Optional [str ] = None ):
722722 """|coro|
723723
724724 Fetches the color of a chatter.
@@ -728,7 +728,7 @@ async def fetch_chatters_colors(self, user_ids: List[int], token: Optional[str]
728728 user_ids: List[:class:`int`]
729729 List of user ids to fetch the colors for
730730 token: Optional[:class:`str`]
731- An oauth token with the channel:read:redirect scope
731+ An optional user oauth token
732732
733733 Returns
734734 --------
@@ -745,7 +745,7 @@ async def update_chatter_color(self, token: str, user_id: int, color: str):
745745 Parameters
746746 -----------
747747 token: :class:`str`
748- An oauth token with the user:manage:chat_color scope.
748+ An oauth token with the `` user:manage:chat_color`` scope.
749749 user_id: :class:`int`
750750 The ID of the user whose color is being updated, this must match the user ID in the token.
751751 color: :class:`str`
@@ -756,9 +756,7 @@ async def update_chatter_color(self, token: str, user_id: int, color: str):
756756 --------
757757 None
758758 """
759- await self ._http .put_user_chat_color (
760- token = token , user_id = str (user_id ), color = color
761- )
759+ await self ._http .put_user_chat_color (token = token , user_id = str (user_id ), color = color )
762760
763761 async def get_webhook_subscriptions (self ):
764762 """|coro|
0 commit comments