Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 0ad5e9f

Browse files
committed
remove cache
1 parent bbfa720 commit 0ad5e9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples/dbt/dbt_sample_project/models/ml_example/prepare_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def model(dbt, session):
8787
params_dfs.append(wind_speed_df)
8888

8989
# Combine data for all the selected parameters.
90-
df = bpd.concat(params_dfs, axis=1, join="inner").cache()
90+
df = bpd.concat(params_dfs, axis=1, join="inner")
9191
df = df.reset_index()
9292

9393
return df

0 commit comments

Comments
 (0)