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

Method replayData

tests/Framework.py:538–544  ·  view source on GitHub ↗
(self, filename: str)

Source from the content-addressed store, hash-verified

536
537 @contextlib.contextmanager
538 def replayData(self, filename: str):
539 previous = self.__customFilename
540 self.__customFilename = filename
541 try:
542 yield
543 finally:
544 self.__customFilename = previous
545
546 @contextlib.contextmanager
547 def captureRequests(self) -> Generator[list[RequestResponse]]:

Calls

no outgoing calls

Tested by

no test coverage detected