summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py
index 5d2c561c..c0984084 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -77,8 +77,7 @@ class HtmlReporter(Reporter):
lines = []
for lineno, line in enumerate(source_lines):
- lineno += 1 # enum is 0-based, lines are 1-based.
-
+ lineno += 1 # enumerate is 0-based, lines are 1-based.
css_class = ""
if lineno in statements: