(self, obj)
| 102 | |
| 103 | # pylint: disable=method-hidden |
| 104 | def default(self, obj): |
| 105 | if isinstance(obj, object): |
| 106 | value = serialize_object(obj=obj) |
| 107 | return value |
| 108 | |
| 109 | # Let the base class default method raise the TypeError |
| 110 | return json.JSONEncoder.default(self, obj) |
| 111 | |
| 112 | |
| 113 | class BaseExtraLogFormatter(logging.Formatter): |
nothing calls this directly
no test coverage detected