diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-19 16:24:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-19 16:24:10 -0400 |
commit | 9f8fc4e8f9bf1da99728c87ce3118168085b76a1 (patch) | |
tree | 0b92ae6686805b5879844a68c03b115b7f438c77 /coverage/control.py | |
parent | ca1b25a3089a7db3d5a08c2a317a2f689f2ff34f (diff) | |
download | python-coveragepy-9f8fc4e8f9bf1da99728c87ce3118168085b76a1.tar.gz |
Line length < 80.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index f5cee74..e3053e4 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -157,7 +157,9 @@ class coverage: if line not in execed: missing.append(line) - return (statements, excluded, missing, format_lines(statements, missing)) + return ( + statements, excluded, missing, format_lines(statements, missing) + ) def report(self, morfs, show_missing=True, ignore_errors=False, file=None): """Write a summary report to `file`. |