Skip to content

Commit d789c38

Browse files
authored
Fix missing comma between parameters
1 parent f8db68d commit d789c38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axelrod/strategies/titfortat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ def strategy(self, opponent: Player) -> Action:
637637
# Otherwise play previous move
638638
return self.history[-1]
639639

640-
@FinalTransformer((D,) name_prefix=None)
640+
@FinalTransformer((D,), name_prefix=None)
641641
class Alexei(Player):
642642
"""
643643
Plays similar to Tit-for-Tat, but always defect on last turn.

0 commit comments

Comments
 (0)