Skip to content

Commit 257b528

Browse files
committed
Put words from a comment line to the proper place
1 parent 931c26e commit 257b528

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

codespeed/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,8 @@ def get_changes_table(self, trend_depth=10, force_save=False):
447447
totals[key] = "-"
448448

449449
if totals['change'] != "-":
450-
# Transform ratio
451-
totals['change'] = (totals['change'] - 1) * 100 to percentage
450+
# Transform ratio to percentage
451+
totals['change'] = (totals['change'] - 1) * 100
452452
if totals['trend'] != "-":
453453
# Transform ratio to percentage
454454
totals['trend'] = (totals['trend'] - 1) * 100

0 commit comments

Comments
 (0)