pylint line too long

This commit is contained in:
Lex Berezhny 2018-12-05 11:06:19 -05:00
parent 1b7c5a1373
commit cff22a8951

View file

@ -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
])