From 4d634a69333fc2b6ccf81c715947c411bc5a4032 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Fri, 15 Mar 2019 11:31:38 -0700 Subject: [PATCH] Fix a bad import --- web3/contract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3/contract.py b/web3/contract.py index fd7039acec..2743116709 100644 --- a/web3/contract.py +++ b/web3/contract.py @@ -9,7 +9,6 @@ ) from eth_abi.exceptions import ( DecodingError, - ValidationError, ) from eth_utils import ( add_0x_prefix, @@ -90,6 +89,7 @@ NoABIEventsFound, NoABIFound, NoABIFunctionsFound, + ValidationError, ) ACCEPTABLE_EMPTY_STRINGS = ["0x", b"0x", "", b""]