From 90587514db58f0921fe265d6fea91d59b99ea2a1 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Sun, 15 Dec 2024 21:18:05 -0400 Subject: [PATCH] Update portfolio.py --- eth_portfolio/portfolio.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eth_portfolio/portfolio.py b/eth_portfolio/portfolio.py index 6414ba12..6525e05a 100644 --- a/eth_portfolio/portfolio.py +++ b/eth_portfolio/portfolio.py @@ -246,9 +246,7 @@ def __init__( elif not isinstance(addresses, Iterable): raise TypeError(f"`addresses` must be an iterable, not {type(addresses)}") - self.addresses = PortfolioWallets( - self, addresses, start_block, load_prices, num_workers_transactions - ) + self.addresses = PortfolioWallets(addresses, start_block, load_prices, num_workers_transactions) """ A container for the :class:`~eth_portfolio.Portfolio`'s :class:`~eth_portfolio.address.PortfolioAddress` objects.