Fix broken incomplete addition case check
Co-authored-by: str4d <jack@z.cash>
This commit is contained in:
parent
4052b6404b
commit
86c2796de8
|
@ -186,7 +186,7 @@ class Point(object):
|
|||
assert self != a
|
||||
assert self != -a
|
||||
assert self != Point.identity()
|
||||
assert self != Point.identity()
|
||||
assert a != Point.identity()
|
||||
return self + a
|
||||
|
||||
def __sub__(self, a):
|
||||
|
|
Loading…
Reference in New Issue