summaryrefslogtreecommitdiff
path: root/coverage/parser.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-01 08:16:06 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-01 13:00:38 -0400
commit420c01394a31415d7a7cbb80be196bcfca48482c (patch)
treed71672faede9de984c024eadc678ae05ff5af558 /coverage/parser.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz
style: parens should indent the same as their opening line
Diffstat (limited to 'coverage/parser.py')
-rw-r--r--coverage/parser.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/parser.py b/coverage/parser.py
index dc7c7404..60b6dc35 100644
--- a/coverage/parser.py
+++ b/coverage/parser.py
@@ -1231,15 +1231,15 @@ class AstArcAnalyzer:
if with_block.break_from:
self.process_break_exits(
self._combine_finally_starts(with_block.break_from, with_exit)
- )
+ )
if with_block.continue_from:
self.process_continue_exits(
self._combine_finally_starts(with_block.continue_from, with_exit)
- )
+ )
if with_block.return_from:
self.process_return_exits(
self._combine_finally_starts(with_block.return_from, with_exit)
- )
+ )
return exits
_handle__AsyncWith = _handle__With