Skip to content

Commit

Permalink
Change not = to !=
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed May 31, 2017
1 parent e21699f commit dafc391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axelrod/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def __eq__(self, other):

for _ in range(200):
try:
if not next(generator) == next(other_generator):
if next(generator) != next(other_generator):
return False
except StopIteration:
break
Expand Down

0 comments on commit dafc391

Please sign in to comment.