Removes the statement that matches the input text.
(self, statement_text)
| 255 | return self.mongo_to_object(list(statements)[0]) |
| 256 | |
| 257 | def remove(self, statement_text): |
| 258 | """ |
| 259 | Removes the statement that matches the input text. |
| 260 | """ |
| 261 | self.statements.delete_one({'text': statement_text}) |
| 262 | |
| 263 | def drop(self): |
| 264 | """ |
no outgoing calls