Skip to content

Commit

Permalink
chore: remove unused logger
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 16, 2024
1 parent 423da0f commit d04bf3c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions eth_portfolio/structs/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit d04bf3c

Please sign in to comment.