(self)
| 242 | f = HTMLFormatter() |
| 243 | class BadHTML(object): |
| 244 | def _repr_html_(self): |
| 245 | raise ValueError("Bad HTML") |
| 246 | bad = BadHTML() |
| 247 | with capture_output() as captured: |
| 248 | result = f(bad) |
nothing calls this directly
no outgoing calls
no test coverage detected