From fb2d7cbe28ff482bdf51d4b8f86ee97ca79445de Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 9 May 2019 17:56:08 -0400 Subject: [PATCH] pylint --- torba/client/basedatabase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/torba/client/basedatabase.py b/torba/client/basedatabase.py index 1fe0d1784..0a91d25cd 100644 --- a/torba/client/basedatabase.py +++ b/torba/client/basedatabase.py @@ -445,7 +445,8 @@ class BaseDatabase(SQLiteMixin): if 'order_by' not in constraints: constraints['order_by'] = ["tx.height=0 DESC", "tx.height DESC", "tx.position DESC"] rows = await self.select_txos( - "tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, chain, account", **constraints + "tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, chain, account", + **constraints ) txos = [] txs = {}