(self, *args, **kwargs)
| 665 | """ |
| 666 | |
| 667 | def __init__(self, *args, **kwargs): |
| 668 | super().__init__(*args, **kwargs) |
| 669 | self._flat = False |
| 670 | self._fields = [] |
| 671 | |
| 672 | # Removing this dependency would require refactoring much of the backend |
| 673 | # code (_process_results, etc.) and these aren't large enough to make it |
| 674 | # an immediate priority: |
| 675 | self._internal_fields = ["id", "django_ct", "django_id", "score"] |
| 676 | |
| 677 | def _clone(self, klass=None): |
| 678 | clone = super()._clone(klass=klass) |