Skip to content

Commit

Permalink
line break to satisfy flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jtauber committed Apr 26, 2016
1 parent 5970855 commit 6e3f70b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gnugo_vs_gnugo.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def clear_board(self):
self.gtp_subprocess.send("clear_board\n")

def genmove(self, color):
message = self.gtp_subprocess.send("genmove {}\n".format(gtp_color(color)))
message = self.gtp_subprocess.send(
"genmove {}\n".format(gtp_color(color)))
assert message[0] == "="
return parse_vertex(message[1:].strip())

Expand Down

0 comments on commit 6e3f70b

Please sign in to comment.