@@ -532,7 +532,7 @@ def _log(func: Any): # type: ignore[no-untyped-def] # skipcq: PY-D0003
532532 async def decorator (self : "Bot" , * args : Any , ** kwargs : Any ) -> Any :
533533 # pylint: disable=protected-access
534534 self ._LOGGER .debug ("Entering: %s" , func .__name__ )
535- result = await func (self , * args , ** kwargs ) # skipcq: PYL-E1102
535+ result = await func (self , * args , ** kwargs )
536536 self ._LOGGER .debug (result )
537537 self ._LOGGER .debug ("Exiting: %s" , func .__name__ )
538538 return result
@@ -554,7 +554,7 @@ def _parse_file_input(
554554 local_mode = self ._local_mode ,
555555 )
556556
557- def _insert_defaults (self , data : Dict [str , object ]) -> None : # skipcq: PYL-R0201
557+ def _insert_defaults (self , data : Dict [str , object ]) -> None :
558558 """This method is here to make ext.Defaults work. Because we need to be able to tell
559559 e.g. `send_message(chat_id, text)` from `send_message(chat_id, text, parse_mode=None)`, the
560560 default values for `parse_mode` etc are not `None` but `DEFAULT_NONE`. While this *could*
@@ -2667,7 +2667,7 @@ async def send_chat_action(
26672667 api_kwargs = api_kwargs ,
26682668 )
26692669
2670- def _effective_inline_results ( # skipcq: PYL-R0201
2670+ def _effective_inline_results (
26712671 self ,
26722672 results : Union [
26732673 Sequence ["InlineQueryResult" ], Callable [[int ], Optional [Sequence ["InlineQueryResult" ]]]
@@ -5511,7 +5511,6 @@ async def get_custom_emoji_stickers(
55115511 pool_timeout : ODVInput [float ] = DEFAULT_NONE ,
55125512 api_kwargs : Optional [JSONDict ] = None ,
55135513 ) -> Tuple [Sticker , ...]:
5514- # skipcq: FLK-D207
55155514 """
55165515 Use this method to get information about emoji stickers by their identifiers.
55175516
@@ -7904,7 +7903,7 @@ async def get_my_name(
79047903 bot = self ,
79057904 )
79067905
7907- def to_dict (self , recursive : bool = True ) -> JSONDict : # skipcq: PYL-W0613
7906+ def to_dict (self , recursive : bool = True ) -> JSONDict :
79087907 """See :meth:`telegram.TelegramObject.to_dict`."""
79097908 data : JSONDict = {"id" : self .id , "username" : self .username , "first_name" : self .first_name }
79107909
0 commit comments