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 5650775 commit 98fd3beCopy full SHA for 98fd3be
axelrod/strategies/grudger.py
@@ -325,7 +325,6 @@ class SpitefulCC(Player):
325
classifier = {
326
"memory_depth": float("inf"), # Long memory
327
"stochastic": False,
328
- "makes_use_of": set(),
329
"long_run_time": False,
330
"inspects_source": False,
331
"manipulates_source": False,
@@ -335,7 +334,7 @@ class SpitefulCC(Player):
335
334
@staticmethod
336
def strategy(opponent: Player) -> Action:
337
"""
338
- Cooperates until the oponent defects, then defects forever.
+ Cooperates until the opponent defects. Then defects forever.
339
Always cooperates twice at the start.
340
341
if len(opponent.history) < 2:
0 commit comments