소스 검색

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.