(self)
| 97 | self.conditions = tuple(conditions) |
| 98 | |
| 99 | def __hash__(self): |
| 100 | return hash((self.handle, self.unit, self.label, self.iconID, self.defaultValue, self.defaultRange, self.mainTooltip, self.secondaryTooltip, self.conditions)) |
| 101 | |
| 102 | def __eq__(self, other): |
| 103 | if not isinstance(other, Input): |
nothing calls this directly
no outgoing calls
no test coverage detected