Skip to content

Commit

Permalink
Remove prints from metrics operation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhorcas committed Aug 1, 2024
1 parent f2369e4 commit 0fa9e2d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions flamapy/core/operations/metrics_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def execute(self, model: VariabilityModel) -> 'Metrics':
self.model = model
# Identifying all implementations of MetricsOperation

print(f'subclasses metrics: {Metrics.__subclasses__()}')
for subclass in Metrics.__subclasses__():
# We first have to identify the metamodels that are being used and
# transform this model to the correspointing metamodel
Expand All @@ -63,7 +62,6 @@ def execute(self, model: VariabilityModel) -> 'Metrics':

def _search_transformations(self, orig: str, dest: str) -> Type[ModelToModel]:
try:
print(f'subclases: {ModelToModel.__subclasses__()}')
for m_to_m in ModelToModel.__subclasses__():
_orig = m_to_m.get_source_extension()
_dest = m_to_m.get_destination_extension()
Expand Down

0 comments on commit 0fa9e2d

Please sign in to comment.