Skip to content

Commit fbfd345

Browse files
committed
uncommented code for converter
1 parent 25844e6 commit fbfd345

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

owlapy/converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ def convert(self, root_variable: str,
132132
self.for_all_de_morgan = for_all_de_morgan
133133
self.named_individuals = named_individuals
134134
# # if named_individuals is True, we return only entities that are instances of owl:NamedIndividual
135-
# if named_individuals:
136-
# self.append_triple(root_variable, 'a', f"<{OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL.as_str()}>")
135+
if named_individuals:
136+
self.append_triple(root_variable, 'a', f"<{OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL.as_str()}>")
137137
with self.stack_variable(root_variable):
138138
with self.stack_parent(ce):
139139
self.process(ce)

0 commit comments

Comments
 (0)