Clear all entries from the knowledge base.
(self)
| 315 | return None |
| 316 | |
| 317 | def clear(self) -> None: |
| 318 | """Clear all entries from the knowledge base.""" |
| 319 | self.entries = [] |
| 320 | |
| 321 | def export_to_text(self) -> str: |
| 322 | """ |
no outgoing calls
no test coverage detected