Skip to content

Commit

Permalink
Fixed issue with missed variable assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
eiglesias34 committed Jun 12, 2024
1 parent 7802483 commit f6d955f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.4
4.7.4.5
```

## 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.4
4.7.4.5
4 changes: 2 additions & 2 deletions rdfizer/rdfizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8690,8 +8690,8 @@ def semantify(config_path, log_path='error.log'):
if duplicate == "yes":
reader = reader.drop_duplicates(keep='first')
data = reader.to_dict(orient='records')
if "NonAssertedTriplesMap" not in sorted_sources[source_type][source][triples_map].mappings_type:
for triples_map in sorted_sources[source_type][source]:
for triples_map in sorted_sources[source_type][source]:
if "NonAssertedTriplesMap" not in sorted_sources[source_type][source][triples_map].mappings_type:
if (len(sorted_sources[source_type][source][
triples_map].predicate_object_maps_list) > 0 and
sorted_sources[source_type][source][
Expand Down
4 changes: 2 additions & 2 deletions rdfizer/rdfizer/semantify.py
Original file line number Diff line number Diff line change
Expand Up @@ -8690,8 +8690,8 @@ def semantify(config_path, log_path='error.log'):
if duplicate == "yes":
reader = reader.drop_duplicates(keep='first')
data = reader.to_dict(orient='records')
if "NonAssertedTriplesMap" not in sorted_sources[source_type][source][triples_map].mappings_type:
for triples_map in sorted_sources[source_type][source]:
for triples_map in sorted_sources[source_type][source]:
if "NonAssertedTriplesMap" not in sorted_sources[source_type][source][triples_map].mappings_type:
if (len(sorted_sources[source_type][source][
triples_map].predicate_object_maps_list) > 0 and
sorted_sources[source_type][source][
Expand Down

0 comments on commit f6d955f

Please sign in to comment.