diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-02 07:27:14 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-02 07:27:14 -0500 |
commit | e2c55d3f8436cc91290897f9ef9d1a478b9d218d (patch) | |
tree | aafeffb08566ad99b2ce16cf92fc5d5adabcaeba /coverage/summary.py | |
parent | e657eb27575a5932d1bb5f488fe0643137943a6a (diff) | |
download | python-coveragepy-e2c55d3f8436cc91290897f9ef9d1a478b9d218d.tar.gz |
Massive eol whitespace clean-up.
Diffstat (limited to 'coverage/summary.py')
-rw-r--r-- | coverage/summary.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/summary.py b/coverage/summary.py index e0e9eba..f4d3c2c 100644 --- a/coverage/summary.py +++ b/coverage/summary.py @@ -8,7 +8,7 @@ from coverage.results import Numbers class SummaryReporter(Reporter): """A reporter for writing the summary report.""" - + def __init__(self, coverage, show_missing=True, ignore_errors=False): super(SummaryReporter, self).__init__(coverage, ignore_errors) self.show_missing = show_missing @@ -16,7 +16,7 @@ class SummaryReporter(Reporter): def report(self, morfs, omit_prefixes=None, outfile=None): """Writes a report summarizing coverage statistics per module.""" - + self.find_code_units(morfs, omit_prefixes) # Prepare the formatting strings @@ -45,7 +45,7 @@ class SummaryReporter(Reporter): outfile.write(rule) total = Numbers() - + for cu in self.code_units: try: analysis = self.coverage._analyze(cu) |