Fix broken incomplete addition case check

Co-authored-by: str4d <jack@z.cash>
This commit is contained in:
Taylor Hornby 2021-04-26 23:35:30 -06:00 committed by GitHub
parent 4052b6404b
commit 86c2796de8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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):