Skip to content

Commit 449a5ed

Browse files
committed
Adding gather map class
1 parent 2811625 commit 449a5ed

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

rdfizer/rdfizer/triples_map/TriplesMap.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,13 @@ def __init__(self, func_map_id, func_name, parameters):
177177

178178
self.func_map_id = func_map_id
179179
self.name = func_name
180-
self.parameters = parameters
180+
self.parameters = parameters
181+
182+
class GatherMap:
183+
184+
def __init__(self, gather_id, value, type, gather_list):
185+
186+
self.gather_id = gather_id
187+
self.value = value
188+
self.type = type
189+
self.gather_list = gather_list

0 commit comments

Comments
 (0)