summaryrefslogtreecommitdiff
path: root/coverage/sqldata.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/sqldata.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz
style: parens should indent the same as their opening line
Diffstat (limited to 'coverage/sqldata.py')
-rw-r--r--coverage/sqldata.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/sqldata.py b/coverage/sqldata.py
index b3157a8a..aa4002a7 100644
--- a/coverage/sqldata.py
+++ b/coverage/sqldata.py
@@ -643,7 +643,7 @@ class CoverageData(SimpleReprMixin):
"from line_bits " +
"inner join file on file.id = line_bits.file_id " +
"inner join context on context.id = line_bits.context_id"
- )
+ )
lines = {(files[path], context): numbits for (path, context, numbits) in cur}
cur.close()
@@ -720,7 +720,7 @@ class CoverageData(SimpleReprMixin):
"from line_bits " +
"inner join file on file.id = line_bits.file_id " +
"inner join context on context.id = line_bits.context_id"
- )
+ )
for path, context, numbits in cur:
key = (aliases.map(path), context)
if key in lines:
@@ -977,7 +977,7 @@ class CoverageData(SimpleReprMixin):
"select l.numbits, c.context from line_bits l, context c " +
"where l.context_id = c.id " +
"and file_id = ?"
- )
+ )
data = [file_id]
if self._query_context_ids is not None:
ids_array = ", ".join("?" * len(self._query_context_ids))