Skip to content

Commit

Permalink
fix: propectos reintroduced errors solved
Browse files Browse the repository at this point in the history
  • Loading branch information
jagalindo committed Jul 24, 2024
1 parent b6b97a3 commit ae3226f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flamapy/core/operations/metrics_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def execute(self, model: VariabilityModel) -> 'Metrics':
if self.model.__class__.get_extension() == metrics_operation.model_type_extension:
# If its the metamodel that math the model, calculate the metrics
# Then we calculate the metrics for each metamodel
sub_metric = subclass() # type: ignore
sub_metric = subclass() # type: ignore
sub_metric.filter = self.filter
self.result.extend(sub_metric.calculate_metamodel_metrics(model))
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read_requirements(file):

setuptools.setup(
name="flamapy-fw",
version="2.0.0.dev5",
version="2.0.0.dev6",
author="Flamapy",
author_email="[email protected]",
description="Flamapy is a Python-based AAFM framework that takes into consideration previous AAFM tool designs and enables multi-solver and multi-metamodel support for the integration of AAFM tooling on the Python ecosystem.",
Expand Down

0 comments on commit ae3226f

Please sign in to comment.