Skip to content

Commit

Permalink
name of the function description is briefly changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Demirrr committed Apr 2, 2024
1 parent 9a6f3c9 commit f40732f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions owlapy/owl2sparql/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,9 +632,9 @@ def as_query(self,


def owl_expression_to_sparql(root_variable: str = "?x",
ce: OWLClassExpression = None,
expression: OWLClassExpression = None,
count: bool = False,
values: Optional[Iterable[OWLNamedIndividual]] = None,
named_individuals: bool = False)->str:
"""Convert an OWL Class Expression (https://www.w3.org/TR/owl2-syntax/#Class_Expressions) into a SPARQL query"""
return converter.as_query(root_variable, ce, count, values, named_individuals)
return converter.as_query(root_variable, expression, count, values, named_individuals)

0 comments on commit f40732f

Please sign in to comment.