Remove all items from the History list.
(self)
| 181 | super().append(history_item) |
| 182 | |
| 183 | def clear(self) -> None: |
| 184 | """Remove all items from the History list.""" |
| 185 | super().clear() |
| 186 | self.start_session() |
| 187 | |
| 188 | def get(self, index: int) -> HistoryItem: |
| 189 | """Get item from the History list using 1-based indexing. |
nothing calls this directly
no test coverage detected