From cff22a895100109aadb6c13b7e8624acdf3ebb88 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 5 Dec 2018 11:06:19 -0500 Subject: [PATCH] pylint line too long --- torba/client/baseledger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/torba/client/baseledger.py b/torba/client/baseledger.py index f3bd6cf73..511d98c37 100644 --- a/torba/client/baseledger.py +++ b/torba/client/baseledger.py @@ -515,6 +515,7 @@ class BaseLedger(metaclass=LedgerRegistry): records = await self.db.get_addresses(cols=('address',), address__in=addresses) await asyncio.wait([ self.on_transaction.where(partial( - lambda a, e: a == e.address and e.tx.height >= height and e.tx.id == tx.id, address_record['address'] + lambda a, e: a == e.address and e.tx.height >= height and e.tx.id == tx.id, + address_record['address'] )) for address_record in records ])