MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / reversed

Method reversed

github/PaginatedList.py:307–323  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

305
306 @property
307 def reversed(self) -> PaginatedList[T]:
308 r = PaginatedList(
309 self.__contentClass,
310 self.__requester,
311 self.__firstUrl,
312 self.__firstParams,
313 headers=self.__headers,
314 list_item=self.__list_item,
315 total_count_item=self.__total_count_item,
316 firstData=self.__firstData,
317 firstHeaders=self.__firstHeaders,
318 attributesTransformer=self._attributesTransformer,
319 graphql_query=self.__graphql_query,
320 graphql_variables=self.__graphql_variables,
321 )
322 r.__reverse()
323 return r
324
325 def __reverse(self) -> None:
326 self._reversed = True

Callers

nothing calls this directly

Calls 2

__reverseMethod · 0.95
PaginatedListClass · 0.70

Tested by

no test coverage detected