Skip to content

Commit

Permalink
fix: broken import
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 17, 2024
1 parent 353dc6e commit 4cf9825
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions evmspec/data/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
from decimal import Decimal
from enum import Enum
from functools import cached_property
from time import monotonic
from typing import TYPE_CHECKING, Any, Callable, Tuple, Type, TypeVar, Union

from cachetools import keys, cached
from cachetools.func import _UnboundTTLCache, TTLCache
from cchecksum import to_checksum_address
from hexbytes import HexBytes
from msgspec import Raw, Struct, json
from typing_extensions import Self

from evmspec.data._cache import ttl_cache

if TYPE_CHECKING:
from evmspec.structs.log import Log
from evmspec.structs.receipt import TransactionReceipt


_T = TypeVar("_T")
"""A generic type variable."""

Expand Down

0 comments on commit 4cf9825

Please sign in to comment.