diff --git a/freqtrade/util/rich_tables.py b/freqtrade/util/rich_tables.py index 7ae315025..cfab5cd74 100644 --- a/freqtrade/util/rich_tables.py +++ b/freqtrade/util/rich_tables.py @@ -41,9 +41,7 @@ def print_rich_table( if any(module in ["pytest", "ipykernel"] for module in sys.modules): width = 200 - console = Console( - width=width - ) + console = Console(width=width) console.print(table) @@ -79,7 +77,5 @@ def print_df_rich_table( if any(module in ["pytest", "ipykernel"] for module in sys.modules): width = 200 - console = Console( - width=width - ) + console = Console(width=width) console.print(table)