(self)
| 442 | |
| 443 | class invalid_key(Command): |
| 444 | def do(self) -> None: |
| 445 | pending = self.reader.console.getpending() |
| 446 | s = "".join(self.event) + pending.data |
| 447 | self.reader.error("`%r' not bound" % s) |
| 448 | |
| 449 | |
| 450 | class invalid_command(Command): |
nothing calls this directly
no test coverage detected