(self)
| 277 | f = PlainTextFormatter() |
| 278 | class BadPretty(object): |
| 279 | def _repr_pretty_(self): |
| 280 | return "hello" |
| 281 | bad = BadPretty() |
| 282 | with capture_output() as captured: |
| 283 | result = f(bad) |
nothing calls this directly
no outgoing calls
no test coverage detected