Skip to content

Commit

Permalink
fix some linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Dec 9, 2024
1 parent 86964ea commit 581de8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/website/docs/build-a-pipeline-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ with pipeline.sql_client() as client:
GROUP BY
category,
region;
)"""
""")
```

In this example, the `execute_sql` method of the SQL client allows you to execute SQL statements. The statement inserts a row with values into the `customers` table.
Expand Down
2 changes: 1 addition & 1 deletion docs/website/docs/dlt-ecosystem/transformations/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ with pipeline.sql_client() as client:
GROUP BY
category,
region;
)"""
""")
```

You can also use the `execute_sql` method to run select queries. The data is returned as a list of rows, with the elements of a row
Expand Down
2 changes: 1 addition & 1 deletion docs/website/docs/tutorial/load-data-from-an-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ You can use dlt [datasets](../general-usage/dataset-access/dataset) to easily qu

```py
# get the dataset
dataset = dlt.dataset("mydata")
dataset = pipeline.dataset("mydata")

# get the user relation
table = dataset.users
Expand Down

0 comments on commit 581de8e

Please sign in to comment.