(value)
| 51 | |
| 52 | |
| 53 | def cast_array(value): |
| 54 | if isinstance(value, list): |
| 55 | # Already a list, no casting needed nor wanted. |
| 56 | return value |
| 57 | |
| 58 | return [v.strip() for v in value.split(",")] |
| 59 | |
| 60 | |
| 61 | CAST_OVERRIDES = { |
nothing calls this directly
no outgoing calls
no test coverage detected