Skip to content

Commit

Permalink
chore: refactor ExternalBalances (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 15, 2024
1 parent e5d781c commit 1b18559
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions eth_portfolio/protocols/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@


class ExternalBalances:
def __init__(self) -> None:
self.protocols: List[StakingPoolABC] = _get_protocols_for_submodule() # type: ignore
protocols: List[StakingPoolABC] = _get_protocols_for_submodule() # type: ignore

@a_sync.future
async def balances(self, address: Address, block: Optional[Block] = None) -> RemoteTokenBalances:
Expand Down

0 comments on commit 1b18559

Please sign in to comment.