(self)
| 124 | self.conditions = tuple(conditions) |
| 125 | |
| 126 | def __hash__(self): |
| 127 | return hash((self.handle, self.label, self.defaultValue, self.conditions)) |
| 128 | |
| 129 | def __eq__(self, other): |
| 130 | if not isinstance(other, Input): |
nothing calls this directly
no outgoing calls
no test coverage detected