fix: silence deprecation warnings causing noisy production logs (#38128)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Amin Ghadersohi
2026-03-02 13:55:00 -05:00
committed by GitHub
parent 00a1487705
commit 01d5245cd2
7 changed files with 41 additions and 20 deletions

View File

@@ -54,5 +54,5 @@ def resample(
else:
_df = getattr(df.resample(rule), method)()
if method in ("ffill", "bfill"):
_df = _df.fillna(method=method)
_df = getattr(_df, method)()
return _df