chore: fall back to 0.0 if min-pair returns None

This commit is contained in:
Matthias
2025-03-08 19:39:02 +01:00
parent 4a7140c05d
commit ac29ef67fd

View File

@@ -297,7 +297,8 @@ def start_list_markets(args: dict[str, Any], pairs_only: bool = False) -> None:
v["symbol"],
safe_value_fallback(tickers.get(v["symbol"], {}), "last", "ask", 0.0),
0.0,
),
)
or 0.0,
8,
),
}