Subclasses of `Postprocessor` should implement a `run` method, which takes the html document as a single text string and returns a (possibly modified) string.
(self, text: str)
| 56 | """ |
| 57 | |
| 58 | def run(self, text: str) -> str: |
| 59 | """ |
| 60 | Subclasses of `Postprocessor` should implement a `run` method, which |
| 61 | takes the html document as a single text string and returns a |
| 62 | (possibly modified) string. |
| 63 | |
| 64 | """ |
| 65 | pass # pragma: no cover |
| 66 | |
| 67 | |
| 68 | class RawHtmlPostprocessor(Postprocessor): |
nothing calls this directly
no outgoing calls
no test coverage detected