From ebf7cdc1b5814219240b899daa3cb6d9137897e1 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:39:11 -0400 Subject: [PATCH] chore: remove unused code --- eth_portfolio/_utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eth_portfolio/_utils.py b/eth_portfolio/_utils.py index 07dfd442..9d5e83aa 100644 --- a/eth_portfolio/_utils.py +++ b/eth_portfolio/_utils.py @@ -60,13 +60,9 @@ async def get_buffered_chain_height() -> int: class PandableList(List[_T]): - def __init__(self): - super().__init__() - @cached_property def df(self) -> DataFrame: return self._df() - def _df(self) -> DataFrame: """Override this method if you need to manipulate your dataframe before returning it.""" return DataFrame(self)