(self)
| 487 | self.labels = label_dict["labels"] |
| 488 | |
| 489 | def save(self): |
| 490 | save_graphs( |
| 491 | self.graph_path, self.graphs, labels={"labels": self.labels} |
| 492 | ) |
| 493 | |
| 494 | def has_cache(self): |
| 495 | return os.path.exists(self.graph_path) |
nothing calls this directly
no test coverage detected