Explorar el Código

Rename Graph.add_triples() to Graph.add().

Stefano Cossu hace 6 años
padre
commit
4434e5116d
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      lakesuperior/model/rdf/graph.pyx

+ 2 - 2
lakesuperior/model/rdf/graph.pyx

@@ -77,7 +77,7 @@ cdef class Graph:
         if data:
             # Populate with provided Python set.
             self.keys = Keyset(len(data))
-            self.add_triples(data)
+            self.add(data)
         else:
             self.keys = Keyset(capacity)
 
@@ -302,7 +302,7 @@ cdef class Graph:
         return {r[i] for r in self.data}
 
 
-    def add_triples(self, triples):
+    def add(self, triples):
         """
         Add triples to the graph.