(o)
| 226 | self.val = val |
| 227 | |
| 228 | def default(o): |
| 229 | if isinstance(o, X): |
| 230 | return f"<{o.val}>" |
| 231 | |
| 232 | return DefaultJSONProvider.default(o) |
| 233 | |
| 234 | class CustomProvider(DefaultJSONProvider): |
| 235 | def object_hook(self, obj): |
nothing calls this directly
no outgoing calls
no test coverage detected