From f9d7f05d386290e2fa6c84d6f457ce610bd4a061 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 22 Jul 2025 06:41:57 +0200 Subject: [PATCH] chore: sort conf_required alphabetically --- freqtrade/commands/arguments.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/freqtrade/commands/arguments.py b/freqtrade/commands/arguments.py index dd3df9ded..aba58dbf9 100755 --- a/freqtrade/commands/arguments.py +++ b/freqtrade/commands/arguments.py @@ -258,24 +258,24 @@ ARGS_RECURSIVE_ANALYSIS = ["timeframe", "timerange", "dataformat_ohlcv", "pairs" # Command level configs - keep at the bottom of the above definitions NO_CONF_REQURIED = [ + "backtest-filter", "convert-data", "convert-trade-data", "download-data", - "list-timeframes", + "hyperopt-list", + "hyperopt-show", + "list-data", + "list-freqaimodels", + "list-hyperoptloss", "list-markets", "list-pairs", "list-strategies", - "list-freqaimodels", - "list-hyperoptloss", - "list-data", - "hyperopt-list", - "hyperopt-show", - "backtest-filter", + "list-timeframes", "plot-dataframe", "plot-profit", "show-trades", - "trades-to-ohlcv", "strategy-updater", + "trades-to-ohlcv", ] NO_CONF_ALLOWED = ["create-userdir", "list-exchanges", "new-strategy"]