(self)
| 665 | """ |
| 666 | |
| 667 | def __init__(self): |
| 668 | self._strategies: Dict[str, Callable[[str], str]] = {} |
| 669 | self._order: List[str] = [] |
| 670 | |
| 671 | def register(self, name: str, fn: Callable[[str], str]) -> None: |
| 672 | self._strategies[name] = fn |
nothing calls this directly
no outgoing calls
no test coverage detected