(self, key: str, value: T)
| 46 | del self.map[key] |
| 47 | |
| 48 | def __setitem__(self, key: str, value: T) -> None: |
| 49 | self.map[key] = value |
| 50 | |
| 51 | |
| 52 | cli_key_dispatch: KeyMap[tuple[str, ...]] = KeyMap(tuple()) |
nothing calls this directly
no outgoing calls
no test coverage detected