1
0

Ruff
All checks were successful
Python Ruff Code Quality / ruff (push) Successful in 22s
Run Python tests (through Pytest) / Test (push) Successful in 31s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 27s

This commit is contained in:
Jon Michael Aanes 2024-12-02 18:29:59 +01:00
parent 9f19297790
commit 35f413680a
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

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