(self)
| 138 | self.ChangeValue(self._storedValue) |
| 139 | |
| 140 | def GetValueRange(self): |
| 141 | parts = self.GetValue().split('-') |
| 142 | if len(parts) == 1: |
| 143 | val = strToFloat(parts[0]) |
| 144 | return (val, val) |
| 145 | else: |
| 146 | return (strToFloat(parts[0]), strToFloat(parts[1])) |
no test coverage detected