From 35f413680a4244aff1ebb55fb5a1131874b13de4 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 2 Dec 2024 18:29:59 +0100 Subject: [PATCH] Ruff --- crypto_seller/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto_seller/__main__.py b/crypto_seller/__main__.py index 4f655b0..f3bc292 100644 --- a/crypto_seller/__main__.py +++ b/crypto_seller/__main__.py @@ -134,7 +134,6 @@ def parse_args(): def main(): """Initializes the program.""" - args = parse_args() # Setup output paths @@ -142,7 +141,7 @@ def main(): path_output.mkdir(parents=True, exist_ok=True) path_log_file = path_output / 'log.txt' path_trades_file = path_output / 'trades.csv' - setup_logging(path_log_file ) + setup_logging(path_log_file) logger.info('Initializing crypto_seller')