fix(security): add logging to except block in factor_runner.py (B110 #744)

This commit is contained in:
TPTBusiness
2026-04-29 16:58:10 +02:00
parent debec8f099
commit 51e37d7bb5
@@ -1,3 +1,4 @@
import logging
import os
from pathlib import Path
"""
@@ -1000,7 +1001,7 @@ class QlibFactorRunner(CachedRunner[QlibFactorExperiment]):
series.to_frame().to_parquet(str(parquet_path))
except Exception:
pass
logging.debug("Error in save_factor_values_to_parquet", exc_info=True)
def _log_result_warnings(self, factor_name: str, result, metrics: dict) -> None:
"""