removed extra assignment
This commit is contained in:
1 changed files with 2 additions and 4 deletions
@@ -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
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.