Skip to content

Commit

Permalink
Remove debug print statement in RelationInteractor
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvlaminck authored Nov 21, 2024
1 parent 3b2e255 commit 528ad57
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion otlmow_model/OtlmowModel/BaseClasses/RelationInteractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def _get_all_concrete_relations(self, model_directory: Path = None):
for target in self._valid_relations[relation]:
for direction, deprecated in self._valid_relations[relation][target].items():
if class_dict[target]['abstract']:
print(f'Abstract class {target} has concrete relation {relation}')
for subclass in get_concrete_subclasses_from_class_dict(target, model_directory=model_directory):
if direction == 'o':
yield self.typeURI, relation, subclass, '', deprecated
Expand Down

0 comments on commit 528ad57

Please sign in to comment.