Raise TypeError instead of Exception

This commit is contained in:
Jennifer Manriquez 2021-07-08 13:35:22 -05:00
parent fda6071ae5
commit 0c074ea005
1 changed files with 1 additions and 1 deletions

View File

@ -722,7 +722,7 @@ def eq(a, b):
else:
return e.all()
else:
raise Exception("== operator returned type %s" % str(type(e)))
raise TypeError("== operator returned type %s" % str(type(e)))
def affineSliceCoords(shape, origin, vectors, axes):