(self)
| 414 | self._tw.write(content, flush=flush, **markup) |
| 415 | |
| 416 | def flush(self) -> None: |
| 417 | self._tw.flush() |
| 418 | |
| 419 | def write_line(self, line: Union[str, bytes], **markup: bool) -> None: |
| 420 | if not isinstance(line, str): |
no outgoing calls
no test coverage detected