Skip to content

Commit

Permalink
Fix fatal typo: in not -> not in
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Mar 14, 2015
1 parent 5d7b3cc commit c4f013c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chess/syzygy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ def probe_wdl(self, board):
def probe_dtz_table(self, board, wdl):
key = calc_key(board)

if key in not self.dtz:
if key not in self.dtz:
return None, 0

return self.dtz[key].probe_dtz_table(board, wdl)
Expand Down

0 comments on commit c4f013c

Please sign in to comment.