(self, string)
| 81 | return " ".join(new_string) |
| 82 | |
| 83 | def replace_num(self, string): |
| 84 | result = re.sub(self.num, '<num>', string) |
| 85 | return result |
| 86 | |
| 87 | def replace_urls(self, string): |
| 88 | result = re.sub(self.url, '<url>', string) |
nothing calls this directly
no outgoing calls
no test coverage detected