浏览代码

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.