(self, val)
| 223 | def test_json_customization(app, client): |
| 224 | class X: # noqa: B903, for Python2 compatibility |
| 225 | def __init__(self, val): |
| 226 | self.val = val |
| 227 | |
| 228 | def default(o): |
| 229 | if isinstance(o, X): |
nothing calls this directly
no outgoing calls
no test coverage detected