From 420c01394a31415d7a7cbb80be196bcfca48482c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 1 May 2022 08:16:06 -0400 Subject: style: parens should indent the same as their opening line --- coverage/sqldata.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coverage/sqldata.py') 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)) -- cgit v1.2.1