소스 검색

Fix `is_stored` method.

Stefano Cossu 7 년 전
부모
커밋
29bb0ba1be
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lakesuperior/store_layouts/ldp_rs/simple_layout.py

+ 2 - 2
lakesuperior/store_layouts/ldp_rs/simple_layout.py

@@ -102,8 +102,8 @@ class SimpleLayout(BaseRdfLayout):
         '''
         self._logger.info('Checking if resource exists: {}'.format(urn))
 
-        return self._conn.query('ASK { ?s ?p ?o . }', initBindings={
-            's' : urn})
+        return bool(self._conn.query('ASK { ?s ?p ?o . }', initBindings={
+            's' : urn}))
 
 
     def modify_dataset(self, remove_trp=Graph(), add_trp=Graph(),