(self)
| 64 | return self.__dict__.get(attr, None) |
| 65 | |
| 66 | def _get_searchindex(self): |
| 67 | from haystack import connections |
| 68 | |
| 69 | return connections[DEFAULT_ALIAS].get_unified_index().get_index(self.model) |
| 70 | |
| 71 | searchindex = property(_get_searchindex) |
| 72 |
nothing calls this directly
no test coverage detected