mirror of
https://github.com/apache/superset.git
synced 2026-04-18 07:35:09 +00:00
fix: silence deprecation warnings causing noisy production logs (#38128)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user