Skip to content

Commit

Permalink
fix: use pydantic compat
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Nov 4, 2023
1 parent e753373 commit 1d6f693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ape_foundry/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from subprocess import PIPE, call
from typing import Any, Dict, Iterator, List, Literal, Optional, Tuple, Union, cast

from ape._pydantic_compat import root_validator
from ape.api import (
BlockAPI,
ForkedNetworkAPI,
Expand Down Expand Up @@ -44,7 +45,6 @@
from evm_trace import CallType, ParityTraceList
from evm_trace import TraceFrame as EvmTraceFrame
from evm_trace import get_calltree_from_geth_trace, get_calltree_from_parity_trace
from pydantic import root_validator
from web3 import HTTPProvider, Web3
from web3.exceptions import ContractCustomError
from web3.exceptions import ContractLogicError as Web3ContractLogicError
Expand Down

0 comments on commit 1d6f693

Please sign in to comment.