Skip to content

Commit 55a6fa4

Browse files
committed
fix
1 parent 2b6f3f5 commit 55a6fa4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dbt_bigframes_integration/.dbt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ dbt_sample_project:
1010
project: bigframes-dev # GCP project ID
1111
threads: 1 # Number of threads dbt can use for running models in parallel
1212
type: bigquery # Specifies the dbt adapter
13-
target: dev # The default target environment
13+
target: dev # The default target environment

dbt_bigframes_integration/dbt_sample_project/models/example/dbt_bigframes_code_sample_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ def model(dbt, session):
4545

4646
# Return the processed BigFrames DataFrame.
4747
# In a dbt Python model, this DataFrame will be materialized as a table
48-
return result
48+
return result

dbt_bigframes_integration/dbt_sample_project/models/example/dbt_bigframes_code_sample_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ def describe(
4949
df["describe"] = df["max_temperature"].combine(df["min_temperature"], describe)
5050

5151
# Return the transformed DataFrame as the final dbt model output.
52-
return df
52+
return df

0 commit comments

Comments
 (0)