Skip to content

Commit 59c0945

Browse files
committed
Updating TriplesMap class
1 parent 584c7b7 commit 59c0945

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You can easily customize your own configurations from the set of features that S
8484

8585
## Version
8686
```
87-
4.7.5
87+
4.7.5.1
8888
```
8989

9090
## RML-Test Cases

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.7.5
1+
4.7.5.1

rdfizer/rdfizer/triples_map/TriplesMap.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,21 @@ def __init__(self, func_map_id, func_name, parameters):
181181

182182
class GatherMap:
183183

184-
def __init__(self, gather_id, value, type, gather_list):
184+
def __init__(self, gather_id, value, value_type, type, gather_list, empty, strategy):
185185

186186
self.gather_id = gather_id
187187
self.value = value
188+
self.value_type = value_type
188189
self.type = type
189-
self.gather_list = gather_list
190+
self.gather_list = gather_list
191+
self.empty = empty
192+
self.strategy = strategy
193+
194+
class ViewSource:
195+
196+
def __init__(self, source, ref_form, iterator, attr_list):
197+
198+
self.source = source
199+
self.ref_form = ref_form
200+
self.iterator = iterator
201+
self.attr_list = attr_list

0 commit comments

Comments
 (0)