Skip to content

Commit a4f3fe7

Browse files
committed
feat: add "no-color" argument to general arguments
1 parent 3903e44 commit a4f3fe7

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

freqtrade/commands/arguments.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111
from freqtrade.constants import DEFAULT_CONFIG
1212

1313

14-
ARGS_COMMON = ["verbosity", "logfile", "version", "config", "datadir", "user_data_dir"]
14+
ARGS_COMMON = [
15+
"verbosity",
16+
"print_colorized",
17+
"logfile",
18+
"version",
19+
"config",
20+
"datadir",
21+
"user_data_dir",
22+
]
1523

1624
ARGS_STRATEGY = [
1725
"strategy",
@@ -58,7 +66,6 @@
5866
"epochs",
5967
"spaces",
6068
"print_all",
61-
"print_colorized",
6269
"print_json",
6370
"hyperopt_jobs",
6471
"hyperopt_random_state",
@@ -74,13 +81,12 @@
7481
ARGS_LIST_STRATEGIES = [
7582
"strategy_path",
7683
"print_one_column",
77-
"print_colorized",
7884
"recursive_strategy_search",
7985
]
8086

81-
ARGS_LIST_FREQAIMODELS = ["freqaimodel_path", "print_one_column", "print_colorized"]
87+
ARGS_LIST_FREQAIMODELS = ["freqaimodel_path", "print_one_column"]
8288

83-
ARGS_LIST_HYPEROPTS = ["hyperopt_path", "print_one_column", "print_colorized"]
89+
ARGS_LIST_HYPEROPTS = ["hyperopt_path", "print_one_column"]
8490

8591
ARGS_BACKTEST_SHOW = ["exportfilename", "backtest_show_pair_list", "backtest_breakdown"]
8692

@@ -202,7 +208,6 @@
202208
"hyperopt_list_max_total_profit",
203209
"hyperopt_list_min_objective",
204210
"hyperopt_list_max_objective",
205-
"print_colorized",
206211
"print_json",
207212
"hyperopt_list_no_details",
208213
"hyperoptexportfilename",

0 commit comments

Comments
 (0)