From 636565ae9cbc88472e4d4fd1f7ebc011c6111901 Mon Sep 17 00:00:00 2001 From: FJ-Riveros Date: Tue, 19 Nov 2024 20:28:07 +0100 Subject: [PATCH] chore: minor tweaks --- integrations/hyperdrive.py | 4 ++-- requirements.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/integrations/hyperdrive.py b/integrations/hyperdrive.py index fa167d3..9808d75 100644 --- a/integrations/hyperdrive.py +++ b/integrations/hyperdrive.py @@ -37,9 +37,9 @@ def update_participants(self): start_block=HYPERDRIVE_SUSDE_POOL_DEPLOYMENT_BLOCK, ) - def get_participants(self): + def get_participants(self, blocks: list[int] | None) -> set[str]: self.update_participants() - return self.pool_users + return self.pool_users # type: ignore def get_balance(self, user: str, block: int) -> float: # update hyperdrive participants diff --git a/requirements.txt b/requirements.txt index bccc01a..bf1b473 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ python-dotenv~=1.0.0 requests==2.32.0 tqdm~=4.66.4 rich==13.7.1 +types-requests==2.31.0.6