Method
__init__
(
self, messages: list[str], use_stdout: bool = False, module_with_blocker: str | None = None
)
Source from the content-addressed store, hash-verified
| 1303 | module_with_blocker: str | None = None |
| 1304 | |
| 1305 | def __init__( |
| 1306 | self, messages: list[str], use_stdout: bool = False, module_with_blocker: str | None = None |
| 1307 | ) -> None: |
| 1308 | super().__init__("\n".join(messages)) |
| 1309 | self.messages = messages |
| 1310 | self.use_stdout = use_stdout |
| 1311 | self.module_with_blocker = module_with_blocker |
| 1312 | |
| 1313 | |
| 1314 | def remove_path_prefix(path: str, prefix: str | None) -> str: |
Callers
nothing calls this directly
Tested by
no test coverage detected