MCPcopy Index your code
hub / github.com/django-haystack/django-haystack / __init__

Method __init__

haystack/query.py:667–675  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected