From e14f02d6edc807105afb728f9793ad4a7b3c6da7 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Thu, 14 Nov 2024 19:56:20 -0500 Subject: [PATCH] fix --- vegafusion-python/vegafusion/runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vegafusion-python/vegafusion/runtime.py b/vegafusion-python/vegafusion/runtime.py index 234d68d8..63e4b50c 100644 --- a/vegafusion-python/vegafusion/runtime.py +++ b/vegafusion-python/vegafusion/runtime.py @@ -308,7 +308,7 @@ def _import_inline_datasets( f"{missing_col}" ) raise ValueError(msg) - df_nw = df_nw.select(columns) # type: ignore[index] + df_nw = df_nw.select(columns) imported_inline_datasets[name] = Table(df_nw) # type: ignore[arg-type] except TypeError: