(self)
| 173 | return self.identity == other.identity |
| 174 | |
| 175 | def __hash__(self): |
| 176 | return hash(make_hashable(self.identity)) |
| 177 | |
| 178 | def resolve_expression( |
| 179 | self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False |
nothing calls this directly
no test coverage detected