Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Mar 14, 2024
1 parent 2fab78e commit 4e5fdb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/benchcomp/benchcomp/visualizers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,7 @@ def _add_scaled_metrics(data_for_metric, log_scaling):
abs_value = math.log(variant_result["absolute"], 10)
else:
abs_value = variant_result["absolute"]
else:
variant_result["scaled"] = (abs_value - min_value) / value_range
variant_result["scaled"] = (abs_value - min_value) / value_range


@staticmethod
Expand Down

0 comments on commit 4e5fdb3

Please sign in to comment.