fix(deps): restore np.nan in offset_metrics_df empty branch (#41267)

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Elizabeth Thompson
2026-06-24 10:49:38 -07:00
committed by GitHub
parent f6ce105450
commit 3ec4bd23c4

View File

@@ -1979,7 +1979,7 @@ class ExploreMixin: # pylint: disable=too-many-public-methods
if offset_metrics_df.empty:
offset_metrics_df = pd.DataFrame(
{
col: [np.NaN]
col: [np.nan]
for col in join_keys + list(metrics_mapping.values())
}
)