From d04bf3cf9c91140e09190160122b6b67c3cc8b9c Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Mon, 16 Dec 2024 08:32:50 -0400 Subject: [PATCH] chore: remove unused logger --- eth_portfolio/structs/structs.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eth_portfolio/structs/structs.py b/eth_portfolio/structs/structs.py index aecbccd5..35ce3246 100644 --- a/eth_portfolio/structs/structs.py +++ b/eth_portfolio/structs/structs.py @@ -4,7 +4,6 @@ The classes are designed to provide a consistent and flexible interface for working with blockchain data. Instance attributes can be fetched with either dot notation or key lookup. Classes are compatible with the standard dictionary interface. """ -import logging from functools import cached_property from typing import ( Any, @@ -38,9 +37,6 @@ from eth_portfolio.structs.modified import ModifiedTrace, _modified_trace_type_map -logger = logging.getLogger(__name__) - - class _LedgerEntryBase(DictStruct, kw_only=True, frozen=True, omit_defaults=True, repr_omit_defaults=True): # type: ignore [call-arg] """ The :class:`~structs._LedgerEntryBase` class is a base class for ledger entries representing on-chain actions in a blockchain.