NotImplemented(x) -> NotImplementedError(x) (#677)

This commit is contained in:
ggrieco-tob
2017-12-29 12:49:50 -03:00
committed by GitHub
parent b6753a34ae
commit 3b796091c2
+1 -1
View File
@@ -377,7 +377,7 @@ class ABI(object):
size = get_uint(256, dyn_offset)
return data[dyn_offset+32:dyn_offset+32+size], offset+4
else:
raise NotImplemented(ty)
raise NotImplementedError(ty)
@staticmethod
def parse(signature, data):