Convert string to list.
(s: str)
| 26 | |
| 27 | |
| 28 | def str_to_list(s: str) -> list[str]: |
| 29 | """Convert string to list.""" |
| 30 | if isinstance(s, str): |
| 31 | return s.split(',') |
| 32 | return s |
| 33 | |
| 34 | |
| 35 | def dedent_initial(s: str, n: int = 4) -> str: |
no outgoing calls
no test coverage detected