Skip to content

Commit 56492d7

Browse files
committed
pylint fix again....
1 parent 4eb8c24 commit 56492d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/daemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def main() -> None:
5959
continue
6060

6161
tx_hashes = web3_api.get_tx_hashes_by_block(start_block, end_block)
62-
if tx_hashes == []:
62+
if not tx_hashes:
6363
continue
6464

6565
web3_api.logger.debug(f"{len(tx_hashes)} hashes found: {tx_hashes}")

0 commit comments

Comments
 (0)