(self)
| 130 | aliases = Dict() # type: ignore |
| 131 | |
| 132 | def start(self): |
| 133 | if self.force or ask_yes_no( |
| 134 | "Really delete all ipython history? ", default="no", interrupt="no" |
| 135 | ): |
| 136 | HistoryTrim.start(self) |
| 137 | |
| 138 | |
| 139 | class HistoryApp(Application): |
nothing calls this directly
no test coverage detected