summaryrefslogtreecommitdiff
path: root/coverage/results.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/results.py')
-rw-r--r--coverage/results.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/results.py b/coverage/results.py
index 9675bff9..79439fd9 100644
--- a/coverage/results.py
+++ b/coverage/results.py
@@ -271,10 +271,10 @@ class Numbers(SimpleReprMixin):
nums.n_branches = self.n_branches + other.n_branches
nums.n_partial_branches = (
self.n_partial_branches + other.n_partial_branches
- )
+ )
nums.n_missing_branches = (
self.n_missing_branches + other.n_missing_branches
- )
+ )
return nums
def __radd__(self, other):