(value)
| 54 | |
| 55 | |
| 56 | def values_to_string(value): |
| 57 | if not value: |
| 58 | return value |
| 59 | |
| 60 | if isinstance(value, dict): |
| 61 | return {k: str(v) for k, v in value.items()} |
| 62 | |
| 63 | if isinstance(value, list): |
| 64 | return [str(element) for element in value] |
| 65 | |
| 66 | return value |
| 67 | |
| 68 | |
| 69 | def dedent(multiline_text): |
no outgoing calls