forked from LBRYCommunity/lbry-sdk
pylint
This commit is contained in:
parent
2d8703bb8d
commit
2f81e9d374
2 changed files with 2 additions and 1 deletions
|
@ -704,7 +704,7 @@ class Ledger(metaclass=LedgerRegistry):
|
|||
batches.append([])
|
||||
heights_in_batch = 1
|
||||
batches[-1].append(txid)
|
||||
if not len(batches[-1]):
|
||||
if not batches[-1]:
|
||||
batches.pop()
|
||||
|
||||
last_showed_synced_count = 0
|
||||
|
|
|
@ -35,6 +35,7 @@ disable=
|
|||
too-many-statements,
|
||||
too-many-nested-blocks,
|
||||
too-many-public-methods,
|
||||
too-many-return-statements,
|
||||
too-many-instance-attributes,
|
||||
protected-access,
|
||||
unused-argument
|
||||
|
|
Loading…
Reference in a new issue