(self, *args, **kwargs)
| 64 | class _ResultDecoder(json.JSONDecoder): |
| 65 | |
| 66 | def __init__(self, *args, **kwargs): |
| 67 | json.JSONDecoder.__init__(self, |
| 68 | object_hook=self._decode_object, |
| 69 | *args, |
| 70 | **kwargs) |
| 71 | |
| 72 | def _decode_object(self, obj): |
| 73 | if 'timestamp' in obj: |
nothing calls this directly
no outgoing calls
no test coverage detected