Переглянути джерело

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

Stefano Cossu 6 роки тому
батько
коміт
4434e5116d
1 змінених файлів з 2 додано та 2 видалено
  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.