Skip to content

Commit 9a5f9da

Browse files
committed
Run black with line length
1 parent 9e36c76 commit 9a5f9da

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

axelrod/match.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ def play(self):
196196
p.set_seed(self._random.random_seed_int())
197197
result = []
198198
for _ in range(turns):
199-
plays = self.simultaneous_play(self.players[0], self.players[1], self.noise)
199+
plays = self.simultaneous_play(
200+
self.players[0], self.players[1], self.noise
201+
)
200202
result.append(plays)
201203

202204
if self._cache_update_required:

0 commit comments

Comments
 (0)