We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a7665 commit 8d2d0a4Copy full SHA for 8d2d0a4
axelrod/strategies/titfortat.py
@@ -66,7 +66,7 @@ class SuspiciousTitForTat(Player):
66
67
def strategy(self, opponent):
68
try:
69
- return flip_dict[opponent.history[-1]]
+ return opponent.history[-1]
70
except IndexError:
71
return 'D'
72
0 commit comments