Converts the input value to its Python representation after processing it. Args: value (str): The input value. Returns: any: The Python representation of the input value.
(self, value)
| 46 | return value |
| 47 | |
| 48 | def to_python(self, value): |
| 49 | """ |
| 50 | Converts the input value to its Python representation after processing it. |
| 51 | |
| 52 | Args: |
| 53 | value (str): The input value. |
| 54 | |
| 55 | Returns: |
| 56 | any: The Python representation of the input value. |
| 57 | """ |
| 58 | return super().to_python(self._cleaning_and_multiline(value)) |
| 59 | |
| 60 | def has_changed(self, initial, data): |
| 61 | """ |
nothing calls this directly
no test coverage detected