Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typo in delta-lake-dagster #2883

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/integrations/delta-lake-dagster.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def iris_dataset() -> pd.DataFrame:
```

## Using Delta Lake and Dagster with Polars
To read and write data to Delta Lake using pandas, use the `DeltaLakePolarsIOManager()`.
To read and write data to Delta Lake using polars, use the `DeltaLakePolarsIOManager()`.

You will need to install it using:

Expand All @@ -223,7 +223,7 @@ pip install dagster-deltalake-polars
In your `Definitions` object, change the `io_manager` to `DeltaLakePolarsIOManager()`:

```
from dagster_polars import DeltaLakePolarsIOManager
from dagster_deltalake_polars import DeltaLakePolarsIOManager

defs = Definitions(
assets=all_assets,
Expand Down
Loading