(match: "re.Match[str]")
| 108 | expanded.update(v.expand(expansion)) |
| 109 | |
| 110 | def replace_all(match: "re.Match[str]") -> str: |
| 111 | return expanded.get(match.groups()[0], "") |
| 112 | |
| 113 | def replace_partial(match: "re.Match[str]") -> str: |
| 114 | match_group = match.groups()[0] |
nothing calls this directly
no outgoing calls
no test coverage detected