From d33edd10438ea67dabc9dffb5e87afc639ea3d94 Mon Sep 17 00:00:00 2001 From: Eitan Shai Weinstein Date: Mon, 3 Aug 2026 08:45:19 -0500 Subject: [PATCH] Fixing line formatting in logger --- tools/ALARAJOYWrapper/preprocess_fendl3.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/ALARAJOYWrapper/preprocess_fendl3.py b/tools/ALARAJOYWrapper/preprocess_fendl3.py index f71fe285..3bfda700 100644 --- a/tools/ALARAJOYWrapper/preprocess_fendl3.py +++ b/tools/ALARAJOYWrapper/preprocess_fendl3.py @@ -98,7 +98,9 @@ def configure_logging(redirect_warnings=False): if redirect_warnings: console_handler.setLevel(logging.INFO) - console_handler.addFilter(lambda record: record.levelno < logging.WARNING) + console_handler.addFilter( + lambda record: record.levelno < logging.WARNING + ) warning_log = Path('warnings.log') warning_log.unlink(missing_ok=True)