@@ -688,7 +688,7 @@ async def chess_move_handler(chess, id, move):
async def chess_undo_handler(chess, id):
try:
- await chess.undo(id)
+ chess.undo(id)
except KeyError:
return ["Нет активной игры."]
except IndexError: