(self)
| 453 | return '{}, {}'.format(label, axisDef.unit) |
| 454 | |
| 455 | def _storeCurrentValues(self): |
| 456 | main, misc = self.getValues() |
| 457 | if main is not None: |
| 458 | self._storedRanges[(main.handle, main.unit)] = main.value |
| 459 | for input in misc: |
| 460 | self._storedConsts[(input.handle, input.unit)] = input.value |
| 461 | |
| 462 | def _clearStoredValues(self): |
| 463 | self._storedRanges.clear() |
no test coverage detected