(self, mutator, value)
| 173 | self.SetSizer(sizer) |
| 174 | |
| 175 | def _simplifyValue(self, mutator, value): |
| 176 | if mutator.attribute.unit is None: |
| 177 | return value |
| 178 | return mutator.attribute.unit.SimplifyValue(value) |
| 179 | |
| 180 | def _complicateValue(self, mutator, value): |
| 181 | if mutator.attribute.unit is None: |
no test coverage detected