From 634a1efc0cc20d5f449e7e32459f66bda8fc00e6 Mon Sep 17 00:00:00 2001 From: FJ-Riveros Date: Tue, 19 Nov 2024 20:15:44 +0100 Subject: [PATCH] chore: remaining lint issues --- integrations/integration.py | 3 +-- integrations/template.py | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integrations/integration.py b/integrations/integration.py index 90b8fed..a17048d 100644 --- a/integrations/integration.py +++ b/integrations/integration.py @@ -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 diff --git a/integrations/template.py b/integrations/template.py index e8236df..e26e837 100644 --- a/integrations/template.py +++ b/integrations/template.py @@ -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__":