(self)
| 239 | self.labels = label_dict["labels"] |
| 240 | |
| 241 | def save(self): |
| 242 | save_graphs( |
| 243 | self.graph_path, self.graphs, labels={"labels": self.labels} |
| 244 | ) |
| 245 | |
| 246 | def has_cache(self): |
| 247 | return os.path.exists(self.graph_path) |
nothing calls this directly
no test coverage detected