Skip to content

Commit

Permalink
chore: remaining lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FJ-Riveros committed Nov 19, 2024
1 parent 83ee6b2 commit 634a1ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions integrations/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def get_participants(

# either get_participants OR get_block_balances must be implemented
def get_block_balances(
self,
blocks: List[int],
self, cached_data: Dict[int, Dict[ChecksumAddress, float]], blocks: List[int]
) -> Dict[int, Dict[str, float]]:
raise NotImplementedError
3 changes: 2 additions & 1 deletion integrations/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def get_block_balances(
where each inner dictionary maps user addresses to their token balance
at that block.
"""
pass
# TODO: Implement your logic here
return {}


if __name__ == "__main__":
Expand Down

0 comments on commit 634a1ef

Please sign in to comment.