summaryrefslogtreecommitdiff
path: root/coverage/control.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/control.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz
style: parens should indent the same as their opening line
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 910cfb08..6387d0dd 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -250,7 +250,7 @@ class Coverage:
source=source, source_pkgs=source_pkgs, run_omit=omit, run_include=include, debug=debug,
report_omit=omit, report_include=include,
concurrency=concurrency, context=context,
- )
+ )
# If we have sub-process measurement happening automatically, then we
# want any explicit creation of a Coverage object to mean, this process
@@ -489,7 +489,7 @@ class Coverage:
branch=self.config.branch,
warn=self._warn,
concurrency=concurrency,
- )
+ )
suffix = self._data_suffix_specified
if suffix:
@@ -515,10 +515,10 @@ class Coverage:
", ".join(
plugin._coverage_plugin_name
for plugin in self._plugins.file_tracers
- ),
+ ),
self._collector.tracer_name(),
- )
)
+ )
for plugin in self._plugins.file_tracers:
plugin._coverage_enabled = False
@@ -835,7 +835,7 @@ class Coverage:
sorted(analysis.excluded),
sorted(analysis.missing),
analysis.missing_formatted(),
- )
+ )
def _analyze(self, it):
"""Analyze a single morf or code unit.
@@ -1146,7 +1146,7 @@ class Coverage:
)
)),
('command_line', " ".join(getattr(sys, 'argv', ['-none-']))),
- ]
+ ]
if self._inorout:
info.extend(self._inorout.sys_info())