While working on switching our starlark dataset object to use ds.body = instead of ds.set_body(), ran into the problem of qri tests needing append to pass. Also, set_csv is a utility function to enable certain tests to pass; these were previously deserializing json to get native starlark list of lists that were directly assigned to the body.
While working on switching our starlark dataset object to use
ds.body =
instead ofds.set_body()
, ran into the problem of qri tests needingappend
to pass. Also,set_csv
is a utility function to enable certain tests to pass; these were previously deserializing json to get native starlark list of lists that were directly assigned to the body.