Skip to content
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"filename": "kedro-datasets/kedro_datasets/dask/parquet_dataset.py",
"hashed_secret": "6e1d66a1596528c308e601c10aa0b92d53606ab9",
"is_verified": false,
"line_number": 64
"line_number": 65
}
],
"kedro-datasets/kedro_datasets/pandas/sql_dataset.py": [
Expand Down Expand Up @@ -460,5 +460,5 @@
}
]
},
"generated_at": "2026-03-18T05:51:45Z"
"generated_at": "2026-04-28T15:02:26Z"
}
3 changes: 2 additions & 1 deletion kedro-datasets/kedro_datasets/dask/csv_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from __future__ import annotations

import os
from copy import deepcopy
from typing import Any

Expand Down Expand Up @@ -53,7 +54,7 @@ class CSVDataset(AbstractDataset[dd.DataFrame, dd.DataFrame]):

def __init__( # noqa: PLR0913
self,
filepath: str,
filepath: str | os.PathLike,
load_args: dict[str, Any] | None = None,
save_args: dict[str, Any] | None = None,
credentials: dict[str, Any] | None = None,
Expand Down
3 changes: 2 additions & 1 deletion kedro-datasets/kedro_datasets/dask/parquet_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from __future__ import annotations

import os
from copy import deepcopy
from typing import Any

Expand Down Expand Up @@ -78,7 +79,7 @@ class ParquetDataset(AbstractDataset[dd.DataFrame, dd.DataFrame]):
def __init__( # noqa: PLR0913
self,
*,
filepath: str,
filepath: str | os.PathLike,
load_args: dict[str, Any] | None = None,
save_args: dict[str, Any] | None = None,
credentials: dict[str, Any] | None = None,
Expand Down
Loading