From 1d5d7048d6af130b298da5bf1e7666b66ef6ef22 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 21 Oct 2024 19:11:56 +0200 Subject: [PATCH] chore: improve test imports --- tests/commands/test_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 9ed3a2dd2..811513345 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -11,6 +11,7 @@ import pytest from freqtrade.commands import ( start_backtesting_show, start_convert_data, + start_convert_db, start_convert_trades, start_create_userdir, start_download_data, @@ -19,6 +20,7 @@ from freqtrade.commands import ( start_install_ui, start_list_data, start_list_exchanges, + start_list_freqAI_models, start_list_markets, start_list_strategies, start_list_timeframes, @@ -30,14 +32,12 @@ from freqtrade.commands import ( start_trading, start_webserver, ) -from freqtrade.commands.db_commands import start_convert_db from freqtrade.commands.deploy_ui import ( clean_ui_subdir, download_and_install_ui, get_ui_download_url, read_ui_version, ) -from freqtrade.commands.list_commands import start_list_freqAI_models from freqtrade.configuration import setup_utils_configuration from freqtrade.enums import RunMode from freqtrade.exceptions import OperationalException