diff --git a/freqtrade/commands/hyperopt_commands.py b/freqtrade/commands/hyperopt_commands.py index e6c264051..d89d25796 100644 --- a/freqtrade/commands/hyperopt_commands.py +++ b/freqtrade/commands/hyperopt_commands.py @@ -2,8 +2,6 @@ import logging from operator import itemgetter from typing import Any, Dict -from colorama import init as colorama_init - from freqtrade.configuration import setup_utils_configuration from freqtrade.data.btanalysis import get_latest_hyperopt_file from freqtrade.enums import RunMode @@ -36,9 +34,6 @@ def start_hyperopt_list(args: Dict[str, Any]) -> None: # Previous evaluations epochs, total_epochs = HyperoptTools.load_filtered_results(results_file, config) - if print_colorized: - colorama_init(autoreset=True) - if not export_csv: try: h_out = HyperoptOutput()