]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
style(weights): normalize fill bandwidth comment spacing
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 19 Jun 2026 14:04:46 +0000 (16:04 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 19 Jun 2026 14:04:46 +0000 (16:04 +0200)
quickadapter/user_data/strategies/LabelTransformer.py

index 73481d1600fd0ea076392a4f50ea7d3c446d2cb2..8ec3a727fc83e87879d5f4144d14d27aa809257e 100644 (file)
@@ -80,7 +80,7 @@ FILL_EPSILON_BASELINES: Final[tuple[FillEpsilonBaseline, ...]] = (
 FillBandwidth = Literal["fixed", "knn"]
 FILL_BANDWIDTHS: Final[tuple[FillBandwidth, ...]] = (
     "fixed",  # 0 - constant sigma = fill_sigma_candles
-    "knn",    # 1 - per-pivot sigma from k-nearest-neighbor index distance
+    "knn",  # 1 - per-pivot sigma from k-nearest-neighbor index distance
 )
 
 StandardizationType = Literal["none", "zscore", "robust", "mmad", "power_yj"]