Skip to content

Commit e8b69f2

Browse files
authored
Update connection_id quoting
1 parent ea2f898 commit e8b69f2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/reference/airflow/datacoves-decorators.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ This custom decorator is an extension of the @task decorator and simplifies runn
4848

4949
```python
5050
def my_dbt_dag():
51-
@task.datacoves_dbt(connection_id=main)
51+
@task.datacoves_dbt(
52+
connection_id="main"
53+
)
5254
def dbt_test() -> str:
5355
return "dbt debug"
5456

@@ -59,7 +61,7 @@ Example with overrides.
5961
```python
6062
def my_dbt_dag():
6163
@task.datacoves_dbt(
62-
connection_id=main,
64+
connection_id="main",
6365
overrides={"warehouse": "my_custom_wh"})
6466
def dbt_test() -> str:
6567
return "dbt debug"

0 commit comments

Comments
 (0)