(self)
| 77 | ) |
| 78 | |
| 79 | def __hash__(self): |
| 80 | return hash( |
| 81 | ( |
| 82 | self.__class__, |
| 83 | self.connector, |
| 84 | self.negated, |
| 85 | *make_hashable(self.children), |
| 86 | ) |
| 87 | ) |
| 88 | |
| 89 | def add(self, data, conn_type): |
| 90 | """ |
nothing calls this directly
no test coverage detected