Skip to content

Commit

Permalink
Fix outdated docs import statement (#454)
Browse files Browse the repository at this point in the history
Before 1.0 this was valid:

```
    from cosmos.task_group import DbtTaskGroup
```

Now we expect users to do:
```
    from cosmos import DbtTaskGroup
```
  • Loading branch information
tatiana committed Aug 10, 2023
1 parent 0c09fe7 commit c238a0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ You can render an Airflow Task Group using the ``DbtTaskGroup`` class. Here's an
from airflow import DAG
from airflow.operators.empty import EmptyOperator
from cosmos.task_group import DbtTaskGroup
from cosmos import DbtTaskGroup
profile_config = ProfileConfig(
profile_name="default",
Expand Down

0 comments on commit c238a0b

Please sign in to comment.