Skip to content

Commit

Permalink
fix: change the rdf_query function call in PyGraph with the right one
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleycaselli committed Jan 25, 2024
1 parent 7fbbd9a commit a69b72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/topbraid/shacl/py/PyGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public PyTripleIterator find(Object subjectSOM, Object predicateSOM, Object obje

public Object query() {
try {
return engine.invokeFunctionOrdered("RDFQuery", new Object[]{this});
return engine.invokeFunctionOrdered("rdf_query", new Object[]{this});
} catch (Exception ex) {
throw ExceptionUtil.throwUnchecked(ex);
}
Expand Down

0 comments on commit a69b72d

Please sign in to comment.