Skip to content

Commit dafc391

Browse files
committed
Change not = to !=
1 parent e21699f commit dafc391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axelrod/player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def __eq__(self, other):
163163

164164
for _ in range(200):
165165
try:
166-
if not next(generator) == next(other_generator):
166+
if next(generator) != next(other_generator):
167167
return False
168168
except StopIteration:
169169
break

0 commit comments

Comments
 (0)