(url: str)
| 132 | return name.strip() |
| 133 | |
| 134 | def clean_url(url: str) -> str: |
| 135 | if not url: |
| 136 | return "" |
| 137 | dollar_idx = url.rfind('$') |
| 138 | return url[:dollar_idx].strip() if dollar_idx != -1 else url.strip() |
| 139 | |
| 140 | def correct_channel_name(name: str, corrections: dict) -> str: |
| 141 | if not name or name not in corrections: |
no outgoing calls
no test coverage detected