(self, obj)
| 29 | self._current = {} |
| 30 | |
| 31 | def end_object(self, obj): |
| 32 | self.objects.append(self.get_dump_object(obj)) |
| 33 | self._current = None |
| 34 | |
| 35 | def get_dump_object(self, obj): |
| 36 | data = {"model": str(obj._meta)} |
nothing calls this directly
no test coverage detected