removed extra assignment

This commit is contained in:
Clay Gerrard 2010-07-29 15:06:01 -05:00
parent 1d882b3fa5
commit 17a108a633

View File

@ -58,8 +58,6 @@ class MockTrue(object):
def __repr__(*args, **kwargs):
return repr(True)
def __eq__(self, other):
self = True
return self == other
return other == True
def __ne__(self, other):
self = True
return self != other
return other != True