Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
properly disable too many locals pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Nov 23, 2024
1 parent 14586bb commit 0d8ef86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sync/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def find_block_with_timestamp(node: Web3, time_stamp: float) -> int:
return int(mid_block_number + 200)


def compute_block_and_month_range(
def compute_block_and_month_range( # pylint: disable=too-many-locals
node: Web3,
) -> Tuple[List[Tuple[int, int]], List[str]]: # pylint: disable=too-many-locals
) -> Tuple[List[Tuple[int, int]], List[str]]:
"""
This determines the block range and the relevant months
for which we will compute and upload data on Dune.
Expand Down

0 comments on commit 0d8ef86

Please sign in to comment.