Skip to content

Commit

Permalink
Update TriplesMap class
Browse files Browse the repository at this point in the history
  • Loading branch information
eiglesias34 committed May 12, 2022
1 parent 6735592 commit b4ef93f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ You can easily customize your own configurations from the set of features that S

## Version
```
4.5
4.5.1
```

## RML-Test Cases
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5
4.5.1
3 changes: 2 additions & 1 deletion rdfizer/rdfizer/triples_map/TriplesMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def __init__(self, predicate_mapping_type, predicate_value, predicate_condition)

class ObjectMap:

def __init__(self, object_mapping_type, object_value, object_datatype, object_child, object_parent, term, language):
def __init__(self, object_mapping_type, object_value, object_datatype, object_child, object_parent, term, language, language_map):

"""
Constructor of ObjectMap object
Expand All @@ -155,3 +155,4 @@ def __init__(self, object_mapping_type, object_value, object_datatype, object_ch
self.parent = object_parent if "None" not in object_parent else None
self.term = term if term != "None" else None
self.language = language if language != "None" else None
self.language_map = language_map if language_map != "None" else None

0 comments on commit b4ef93f

Please sign in to comment.