(handle, unit, value)
| 365 | processedHandles = set() |
| 366 | |
| 367 | def addMiscData(handle, unit, value): |
| 368 | if handle in processedHandles: |
| 369 | return |
| 370 | inputData = InputData(handle=handle, unit=unit, value=value) |
| 371 | misc.append(inputData) |
| 372 | |
| 373 | # Main input box |
| 374 | main = InputData(handle=self._mainInputBox.handle, unit=self._mainInputBox.unit, value=self._mainInputBox.textBox.GetValueRange()) |