(self, client, *args, **kwargs)
| 416 | |
| 417 | class CacheDecoder(json.JSONDecoder): |
| 418 | def __init__(self, client, *args, **kwargs): |
| 419 | self.client = client |
| 420 | json.JSONDecoder.__init__(self, object_hook=self.object_hook, *args, **kwargs) |
| 421 | |
| 422 | def object_hook(self, obj): |
| 423 | if '_type' not in obj: |