(self, information_index: int)
| 204 | return path[::-1] |
| 205 | |
| 206 | def insert_information(self, information_index: int): |
| 207 | if information_index not in self.content: |
| 208 | self.need_regenerate_synthesize_output = True |
| 209 | self.content.add(information_index) |
| 210 | |
| 211 | def get_all_descendents(self) -> List["KnowledgeNode"]: |
| 212 | """ |
no outgoing calls
no test coverage detected