(self, other)
| 127 | return hash((self.handle, self.label, self.defaultValue, self.conditions)) |
| 128 | |
| 129 | def __eq__(self, other): |
| 130 | if not isinstance(other, Input): |
| 131 | return False |
| 132 | return all(( |
| 133 | self.handle == other.handle, |
| 134 | self.label == other.label, |
| 135 | self.defaultValue == other.defaultValue, |
| 136 | self.conditions == other.conditions)) |
nothing calls this directly
no outgoing calls
no test coverage detected