If the value if from an array column, deserialise the string back into a list.
(value: str)
| 250 | |
| 251 | @decode_to_string |
| 252 | def convert_array_out(value: str) -> list: |
| 253 | """ |
| 254 | If the value if from an array column, deserialise the string back into a |
| 255 | list. |
| 256 | """ |
| 257 | return load_json(value) |
| 258 | |
| 259 | |
| 260 | def convert_complex_array_out(value: bytes, converter: Callable): |
nothing calls this directly
no test coverage detected