Remove empty check

This commit is contained in:
Eryn Wells 2017-09-30 13:34:46 -07:00
parent c725d3764d
commit 1a48c696ea

View file

@ -36,7 +36,7 @@ class Board:
@property
def is_o_turn(self):
x_ahead_one = (self.num_x == self.num_o + 1)
return (self.empty or x_ahead_one) and not self.full
return x_ahead_one and not self.full
@property
def next_player(self):