forked from LBRYCommunity/lbry-sdk
pylint
This commit is contained in:
parent
082a91dc15
commit
052ef73226
2 changed files with 2 additions and 2 deletions
|
@ -254,7 +254,7 @@ def get_block_range_without_filters() -> Tuple[int, int]:
|
||||||
.select_from(
|
.select_from(
|
||||||
BlockTable.join(BlockFilter, BlockTable.c.height == BlockFilter.c.height, isouter=True)
|
BlockTable.join(BlockFilter, BlockTable.c.height == BlockFilter.c.height, isouter=True)
|
||||||
)
|
)
|
||||||
.where(BlockFilter.c.height == None)
|
.where(BlockFilter.c.height.is_(None))
|
||||||
)
|
)
|
||||||
result = context().fetchone(sql)
|
result = context().fetchone(sql)
|
||||||
return result['start_height'], result['end_height']
|
return result['start_height'], result['end_height']
|
||||||
|
|
|
@ -4,7 +4,7 @@ import asyncio
|
||||||
import tempfile
|
import tempfile
|
||||||
from unittest import skip
|
from unittest import skip
|
||||||
from binascii import hexlify, unhexlify
|
from binascii import hexlify, unhexlify
|
||||||
from typing import List, Optional, Iterable
|
from typing import List, Optional
|
||||||
from distutils.dir_util import copy_tree, remove_tree
|
from distutils.dir_util import copy_tree, remove_tree
|
||||||
|
|
||||||
from lbry import Config, Database, RegTestLedger, Transaction, Output, Input
|
from lbry import Config, Database, RegTestLedger, Transaction, Output, Input
|
||||||
|
|
Loading…
Reference in a new issue