diff --git a/vegafusion-python/vegafusion/runtime.py b/vegafusion-python/vegafusion/runtime.py index e764e438..155cc9e4 100644 --- a/vegafusion-python/vegafusion/runtime.py +++ b/vegafusion-python/vegafusion/runtime.py @@ -364,11 +364,11 @@ def _import_or_register_inline_datasets( # TODO: Nice error message when column is not found df_nw = df_nw[columns] # type: ignore[index] - imported_inline_datasets[name] = Table(df_nw) + imported_inline_datasets[name] = Table(df_nw) # type: ignore[arg-type] except TypeError: # Not supported by Narwhals, try pycapsule interface directly if hasattr(value, "__arrow_c_stream__"): - imported_inline_datasets[name] = Table(value) + imported_inline_datasets[name] = Table(value) # type: ignore[arg-type] else: raise