diff --git a/owlapy/owl_reasoner.py b/owlapy/owl_reasoner.py index 3c930fd..211460d 100644 --- a/owlapy/owl_reasoner.py +++ b/owlapy/owl_reasoner.py @@ -1025,9 +1025,9 @@ def _retrieve_triples(self, pe: OWLPropertyExpression) -> Iterable: yield from relations def reset_and_disable_cache(self): - self.reset() self.class_cache = False self._property_cache = False + self.reset() class SyncReasoner(AbstractOWLReasoner):