From 1e1c98cd4f3d7ee55f855badaa5fbceae7a6d424 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 20 Feb 2010 08:48:01 -0500 Subject: Lint cleanups --- coverage/html.py | 4 +++- test/test_process.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/coverage/html.py b/coverage/html.py index 39ee8866..f8de2e4c 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -112,7 +112,9 @@ class HtmlReporter(Reporter): html.append(escape(tok_text)) else: tok_html = escape(tok_text) or ' ' - html.append("%s" % (tok_type, tok_html)) + html.append( + "%s" % (tok_type, tok_html) + ) lines.append({ 'html': ''.join(html), diff --git a/test/test_process.py b/test/test_process.py index fcc50200..8e621adf 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -1,6 +1,6 @@ """Tests for process behavior of coverage.py.""" -import os, sys, textwrap +import os, sys import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -- cgit v1.2.1