(self)
| 55 | |
| 56 | class next_history(commands.Command): |
| 57 | def do(self) -> None: |
| 58 | r = self.reader |
| 59 | if r.historyi == len(r.history): |
| 60 | r.error("end of history list") |
| 61 | return |
| 62 | r.select_item(r.historyi + 1) |
| 63 | |
| 64 | |
| 65 | class previous_history(commands.Command): |
nothing calls this directly
no test coverage detected