(self, handle, label, defaultValue, conditions=())
| 117 | class InputCheckbox: |
| 118 | |
| 119 | def __init__(self, handle, label, defaultValue, conditions=()): |
| 120 | self.handle = handle |
| 121 | self.label = label |
| 122 | self.defaultValue = defaultValue |
| 123 | # Format: ((x condition, y condition), (x condition, y condition), ...) |
| 124 | self.conditions = tuple(conditions) |
| 125 | |
| 126 | def __hash__(self): |
| 127 | return hash((self.handle, self.label, self.defaultValue, self.conditions)) |
nothing calls this directly
no outgoing calls
no test coverage detected