Skip to content

Commit

Permalink
chore: unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day committed Dec 20, 2024
1 parent ddc851e commit 143a834
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions ape_alchemy/provider.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import os
from collections.abc import Iterable
from typing import TYPE_CHECKING, Any, Optional
from typing import TYPE_CHECKING, Optional

from ape.api import ReceiptAPI, TraceAPI, TransactionAPI, UpstreamProvider
from ape.exceptions import APINotImplementedError, ContractLogicError, VirtualMachineError
from ape.logging import logger
from ape_ethereum.provider import Web3Provider
from eth_pydantic_types import HexBytes
from eth_typing import HexStr
from requests import HTTPError
from web3 import HTTPProvider, Web3
from web3.exceptions import ContractLogicError as Web3ContractLogicError
from web3.exceptions import ExtraDataLengthError
Expand All @@ -20,9 +18,8 @@
from web3.middleware import geth_poa_middleware as ExtraDataToPOAMiddleware # type: ignore

from web3.middleware.validation import MAX_EXTRADATA_LENGTH
from web3.types import RPCEndpoint

from .exceptions import AlchemyFeatureNotAvailable, AlchemyProviderError, MissingProjectKeyError
from .exceptions import MissingProjectKeyError
from .trace import AlchemyTransactionTrace

if TYPE_CHECKING:
Expand Down

0 comments on commit 143a834

Please sign in to comment.