(self)
| 454 | |
| 455 | class invalid_key(Command): |
| 456 | def do(self) -> None: |
| 457 | pending = self.reader.console.getpending() |
| 458 | s = "".join(self.event) + pending.data |
| 459 | self.reader.error("`%r' not bound" % s) |
| 460 | |
| 461 | |
| 462 | class invalid_command(Command): |
nothing calls this directly
no test coverage detected