Skip to content

Commit a349ee0

Browse files
committed
run black
1 parent 020dba4 commit a349ee0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

axelrod/tests/strategies/test_momentum.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def test_initialisation(self):
2626

2727
def test_repr(self):
2828
player = self.player(alpha=0.9, threshold=0.8)
29-
self.assertEqual(repr(player), "Momentum: 1.0, Alpha: 0.9, Threshold: 0.8")
29+
self.assertEqual(
30+
repr(player), "Momentum: 1.0, Alpha: 0.9, Threshold: 0.8"
31+
)
3032

3133
def test_strategy(self):
3234
actions = [(C, C)]

0 commit comments

Comments
 (0)