(inStr)
| 41 | |
| 42 | |
| 43 | def sanitizeStr(inStr): |
| 44 | if inStr is None: |
| 45 | return inStr |
| 46 | out = inStr.replace("\n\t", " | ") |
| 47 | out = out.replace("\n", " | ") |
| 48 | out = out.replace("\t", " | ") |
| 49 | out = out.replace("green house", "greenhouse") |
| 50 | return out |
| 51 | |
| 52 | |
| 53 |
no outgoing calls
no test coverage detected