Skip to content

Commit

Permalink
Fixed converter and some of its tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Aug 26, 2024
1 parent 265f15f commit e826b10
Show file tree
Hide file tree
Showing 2 changed files with 165 additions and 165 deletions.
4 changes: 2 additions & 2 deletions owlapy/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,10 +624,10 @@ def as_query(self,
q = [f"VALUES {root_variable} {{ "]
for x in values:
q.append(f"<{x.to_string_id()}>")
q.append("}} . ")
q.append("} . ")
qs.extend(q)
qs.extend(tp)
qs.append(" }}")
qs.append(" }")


query = "\n".join(qs)
Expand Down
Loading

0 comments on commit e826b10

Please sign in to comment.