From 9e4e087e37cc9331a3851428e0a6eb9c9452b552 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Tue, 5 Jun 2018 17:44:35 -0600 Subject: [PATCH] Fix typo introduced in PR #76 --- eth_abi/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_abi/base.py b/eth_abi/base.py index 7e0cef15..1d55cd1f 100644 --- a/eth_abi/base.py +++ b/eth_abi/base.py @@ -144,4 +144,4 @@ def from_type_str(cls, type_str, registry): # pragma: no cover Used by ``ABIRegistry`` to get an appropriate encoder or decoder instance for the given type string and type registry. """ - raise cls() + raise NotImplementedError('Must implement `from_type_str`')