Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Aug 31, 2011
1 parent dc39148 commit 326daff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsite/metrics.py
Expand Up @@ -99,7 +99,7 @@ def fold(cls, lst, now, percentile=90):
if len(vals) == 1:
vals_pct = vals
else:
vals_pct = vals[lower_idx:upper_idx]
vals_pct = vals[lower_idx:upper_idx]

val_sum_pct = sum(vals_pct)
val_avg_pct = val_sum_pct / inner_indexes if inner_indexes > 0 else val_sum_pct
Expand Down

0 comments on commit 326daff

Please sign in to comment.