Beispiel #1
0
 def transform(self, algebraic_moves):
     game = ChessGame()
     return ''.join(
         game.make_move_from_algebraic_and_return_uci(move)
         for move in algebraic_moves)
 def transform(self, algebraic_moves):
     game = ChessGame()
     return "".join(game.make_move_from_algebraic_and_return_uci(move) for move in algebraic_moves)