(self, nx_graph)
| 128 | class EmbedxGraph: |
| 129 | |
| 130 | def __init__(self, nx_graph): |
| 131 | self.data = json_graph.node_link_data(nx_graph) |
| 132 | self.context = Context(json_graph.node_link_graph(self.data)) |
| 133 | self.has_feature = self.__has_feature() |
| 134 | |
| 135 | def next_node(self): |
| 136 | assert "nodes" in self.data |
nothing calls this directly
no test coverage detected