From b026c25c277e0a17eb229dbc29affbe41baa33db Mon Sep 17 00:00:00 2001 From: acalliger Date: Thu, 7 Mar 2024 11:48:41 +0100 Subject: [PATCH] fix: call recursive arg in read_files --- edspdf/data/files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/edspdf/data/files.py b/edspdf/data/files.py index d67c8df..ac1ce2d 100644 --- a/edspdf/data/files.py +++ b/edspdf/data/files.py @@ -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: """ @@ -271,6 +272,7 @@ def read_files( keep_ipynb_checkpoints=keep_ipynb_checkpoints, load_annotations=load_annotations, filesystem=filesystem, + recursive=recursive ) ) if converter: