Skip to content

Commit ac29ef6

Browse files
committed
chore: fall back to 0.0 if min-pair returns None
1 parent 4a7140c commit ac29ef6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

freqtrade/commands/list_commands.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,8 @@ def start_list_markets(args: dict[str, Any], pairs_only: bool = False) -> None:
297297
v["symbol"],
298298
safe_value_fallback(tickers.get(v["symbol"], {}), "last", "ask", 0.0),
299299
0.0,
300-
),
300+
)
301+
or 0.0,
301302
8,
302303
),
303304
}

0 commit comments

Comments
 (0)