Skip to content

Commit

Permalink
Convert to js types when including inline data in pre-transform result
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Oct 6, 2023
1 parent 9cd2fde commit 36a2438
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vegafusion-python-embed/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ impl PyVegaFusionRuntime {
let datasets = datasets
.into_iter()
.map(|(name, scope, table)| {
let table = table.to_js_types()?;
let name = name.into_py(py);
let scope = scope.into_py(py);
let table = match extracted_format.as_str() {
Expand Down

0 comments on commit 36a2438

Please sign in to comment.