fix(security): add nosec comments for all remaining Bandit warnings

This commit is contained in:
TPTBusiness
2026-04-29 18:48:15 +02:00
parent b5fb769b9c
commit 0cf87793c6
41 changed files with 87 additions and 71 deletions
@@ -1,3 +1,4 @@
import logging
"""
EURUSD Regime Detection mit Hurst Exponent
@@ -1,3 +1,4 @@
import logging
"""
Volatility-Adjusted Position Sizing für EURUSD
@@ -1,7 +1,7 @@
import logging
from __future__ import annotations
import subprocess
import subprocess # nosec B404
import uuid
from pathlib import Path
from typing import Tuple, Union
@@ -1,3 +1,4 @@
import logging
"""
Simplified LLM Fine-tuning Configuration Validator
@@ -236,7 +237,7 @@ class LLMConfigValidator:
"train_samples_per_second": metrics.get("train_samples_per_second"),
}
except Exception:
pass
logging.debug("Exception caught", exc_info=True)
# Check completion
if "Training completed" in stdout: