Takes the display value and turns it back into the internal representation of it
(self, value)
| 726 | return value |
| 727 | |
| 728 | def ComplicateValue(self, value): |
| 729 | """Takes the display value and turns it back into the internal representation of it""" |
| 730 | |
| 731 | override = self.translations.get(self.name) |
| 732 | if override is not None: |
| 733 | return override[3](value) |
| 734 | |
| 735 | return value |
| 736 | |
| 737 | |
| 738 | class Traits(EqBase): |