bets = Blueprint("bets", __name__) logger = logging.getLogger(__name__) @bets.put(f"/{GLOBAL_ENDPOINT}/{VERSION}/bets/phases/<string:phase_code>") @token_required @@ -281,10 +285,23 @@ def modify_bets(current_user): ): raise NewScoreNegative logger.info( modify_score_bet_succ...