Skip to content
2 changes: 1 addition & 1 deletion doc/source/user_guide/scale.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ We can use Dask's ``read_parquet`` function, but provide a globstring of files t

import dask.dataframe as dd

ddf = dd.read_parquet("data/timeseries/ts*.parquet", engine="pyarrow")
ddf = dd.read_parquet("data/timeseries/ts*.parquet", engine="pyarrow", auto_mkdir=True)
ddf

Inspecting the ``ddf`` object, we see a few things
Expand Down