You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use a part of your code and i was stuck at an Error:
TypeError:
Traceback (most recent call last)
in ()
35 return grid
36
---> 37 ai = AI()
in build_move_table(self)
140 row_moved = tuple(move_row(row))
--> 142 if max(row_moved) > max_cell:
143 self.move_table[idx] = -1
144 else:
TypeError: '>' not supported between instances of 'NoneType' and 'int'
The text was updated successfully, but these errors were encountered:
I am trying to use a part of your code and i was stuck at an Error:
TypeError:
Traceback (most recent call last)
in ()
35 return grid
36
---> 37 ai = AI()
in build_move_table(self)
140 row_moved = tuple(move_row(row))
--> 142 if max(row_moved) > max_cell:
143 self.move_table[idx] = -1
144 else:
TypeError: '>' not supported between instances of 'NoneType' and 'int'
The text was updated successfully, but these errors were encountered: