(self, path: str, old_pattern: str, new_pattern: str)
| 19 | } |
| 20 | |
| 21 | def to(self, path: str, old_pattern: str, new_pattern: str): |
| 22 | return path.replace(self.prefixs[old_pattern], self.prefixs[new_pattern], 1) |
| 23 | |
| 24 | pc = PathConverter() |
no outgoing calls
no test coverage detected