def draw_for_hand(game: Game, player: Player) -> Dict:
'''Draws three cards and places them in players hand'''
result: Dict = game.deck_to_hand(player)
error_check(result)
update_client(game)
return jsonify(result)
评论列表
文章目录