fix: missing newline in backtest.py causing 404

This commit is contained in:
shokollm
2026-04-11 05:26:51 +00:00
parent 5c9e46e693
commit 6658a418cc

View File

@@ -213,7 +213,9 @@ def get_backtest_trades(
"backtest_id": run_id,
"trades": trades,
"total_trades": len(trades),
}@router.get("/bots/{bot_id}/backtests", response_model=List[BacktestResponse])
}
@router.get("/bots/{bot_id}/backtests", response_model=List[BacktestResponse])
def list_backtests(
bot_id: str,
current_user: User = Depends(get_current_user),