(schema, edges)
| 67 | |
| 68 | @staticmethod |
| 69 | def check_edges(schema, edges): |
| 70 | for edge in edges: |
| 71 | GLTorchGraph.check_edge(schema, edge) |
| 72 | if edge in edges[edges.index(edge) + 1 :]: |
| 73 | raise ValueError(f"Duplicated edge: {edge}") |
| 74 | |
| 75 | @staticmethod |
| 76 | def check_features(feature_names, properties): |
no test coverage detected