(s)
| 248 | |
| 249 | |
| 250 | def _remove_cmd_chars(s): |
| 251 | if isinstance(s, str): |
| 252 | return s.replace("'", '_').replace('"', '_').replace('\r\n', ' ').replace('\n', ' ') |
| 253 | return s |
| 254 | |
| 255 | |
| 256 | def _remove_symbols(s): |
no outgoing calls
no test coverage detected