Skip to content

Commit 8f9f274

Browse files
ScienfitzAdrianSosic
authored andcommitted
Deactivate polars streaming
pola-rs/polars#20833
1 parent 71d9cf0 commit 8f9f274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

baybe/searchspace/discrete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def from_product(
240240
lazy_df, mask_missing = _apply_constraint_filter_polars(
241241
lazy_df, constraints
242242
)
243-
df_records = lazy_df.collect(streaming=True).to_dicts()
243+
df_records = lazy_df.collect().to_dicts()
244244
df = pd.DataFrame.from_records(df_records)
245245
except OptionalImportError:
246246
# Apply pandas product

0 commit comments

Comments
 (0)