Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion kedro-datasets/kedro_datasets/openxml/docx_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from __future__ import annotations

import os
from copy import deepcopy
from io import BytesIO
from pathlib import PurePosixPath
Expand Down Expand Up @@ -54,7 +55,7 @@ class DocxDataset(AbstractVersionedDataset[dict, dict]):
def __init__( # noqa: PLR0913
self,
*,
filepath: str,
filepath: str | os.PathLike,
Comment thread
ravi-kumar-pilla marked this conversation as resolved.
version: Version | None = None,
credentials: dict[str, Any] | None = None,
fs_args: dict[str, Any] | None = None,
Expand Down
3 changes: 2 additions & 1 deletion kedro-datasets/kedro_datasets/openxml/pptx_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from __future__ import annotations

import os
from copy import deepcopy
from io import BytesIO
from pathlib import PurePosixPath
Expand Down Expand Up @@ -55,7 +56,7 @@ class PptxDataset(AbstractVersionedDataset[Presentation, Presentation]):
def __init__( # noqa: PLR0913
self,
*,
filepath: str,
filepath: str | os.PathLike,
version: Version | None = None,
credentials: dict[str, Any] | None = None,
fs_args: dict[str, Any] | None = None,
Expand Down
Loading