Skip to content

Commit

Permalink
bring back ignores for CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Oct 19, 2024
1 parent 4d1b3db commit 59d8bd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vegafusion-python/vegafusion/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 59d8bd1

Please sign in to comment.