Skip to content

Commit

Permalink
Removed added parameters in subject map calling
Browse files Browse the repository at this point in the history
  • Loading branch information
eiglesias34 committed May 31, 2024
1 parent 772640d commit 435a8f9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.7.4.2
4.7.4.3
```

## 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.7.4.2
4.7.4.3
2 changes: 1 addition & 1 deletion rdfizer/rdfizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,7 @@ def mapping_parser(mapping_file):
[result_triples_map.graph],func_output)
else:
reference, condition = string_separetion(str(result_triples_map.subject_constant))
subject_map = tm.SubjectMap(str(result_triples_map.subject_function), condition, "function","None","None","None","None",
subject_map = tm.SubjectMap(str(result_triples_map.subject_function), condition, "function","None","None",
[str(result_triples_map.rdf_class)], result_triples_map.termtype,
[result_triples_map.graph],func_output)
elif result_triples_map.subject_quoted != None:
Expand Down
2 changes: 1 addition & 1 deletion rdfizer/rdfizer/semantify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,7 @@ def mapping_parser(mapping_file):
[result_triples_map.graph],func_output)
else:
reference, condition = string_separetion(str(result_triples_map.subject_constant))
subject_map = tm.SubjectMap(str(result_triples_map.subject_function), condition, "function","None","None","None","None",
subject_map = tm.SubjectMap(str(result_triples_map.subject_function), condition, "function","None","None",
[str(result_triples_map.rdf_class)], result_triples_map.termtype,
[result_triples_map.graph],func_output)
elif result_triples_map.subject_quoted != None:
Expand Down

0 comments on commit 435a8f9

Please sign in to comment.