Skip to content

Commit

Permalink
fix: call recursive arg in read_files
Browse files Browse the repository at this point in the history
  • Loading branch information
acalliger authored and percevalw committed Mar 7, 2024
1 parent ca4ad97 commit 1a48a6e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions edspdf/data/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ def read_files(
load_annotations: bool = False,
converter: Optional[Union[str, Callable]] = None,
filesystem: Optional[Any] = None,
recursive: Optional[bool] = False,
**kwargs,
) -> LazyCollection:
"""
Expand Down Expand Up @@ -271,6 +272,7 @@ def read_files(
keep_ipynb_checkpoints=keep_ipynb_checkpoints,
load_annotations=load_annotations,
filesystem=filesystem,
recursive=recursive
)
)
if converter:
Expand Down

0 comments on commit 1a48a6e

Please sign in to comment.