Skip to content

Commit

Permalink
Trying to fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Katiyar <[email protected]>
  • Loading branch information
ankatiyar committed Oct 22, 2024
1 parent 5150fa8 commit ce670e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kedro-datasets/kedro_datasets/polars/lazy_polars_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
logger = logging.getLogger(__name__)


class LazyPolarsDataset(AbstractVersionedDataset[pl.LazyFrame, PolarsFrame]):
class LazyPolarsDataset(
AbstractVersionedDataset[pl.LazyFrame, pl.LazyFrame | pl.DataFrame]
):
"""``LazyPolarsDataset`` loads/saves data from/to a data file using an
underlying filesystem (e.g.: local, S3, GCS). It uses Polars to handle
the type of read/write target. It uses lazy loading with Polars Lazy API, but it can
Expand Down

0 comments on commit ce670e6

Please sign in to comment.