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([])
|
batches.append([])
|
||||||
heights_in_batch = 1
|
heights_in_batch = 1
|
||||||
batches[-1].append(txid)
|
batches[-1].append(txid)
|
||||||
if not len(batches[-1]):
|
if not batches[-1]:
|
||||||
batches.pop()
|
batches.pop()
|
||||||
|
|
||||||
last_showed_synced_count = 0
|
last_showed_synced_count = 0
|
||||||
|
|
|
@ -35,6 +35,7 @@ disable=
|
||||||
too-many-statements,
|
too-many-statements,
|
||||||
too-many-nested-blocks,
|
too-many-nested-blocks,
|
||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
|
too-many-return-statements,
|
||||||
too-many-instance-attributes,
|
too-many-instance-attributes,
|
||||||
protected-access,
|
protected-access,
|
||||||
unused-argument
|
unused-argument
|
||||||
|
|
Loading…
Reference in a new issue