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')