From 0974ba4e1ca165f9916d17861491f482e33909ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Doumouro?= Date: Tue, 25 Mar 2025 11:14:39 +0100 Subject: [PATCH] docs(examples): batch conversion doc `raises_on_error` (#1147) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Clément Doumouro --- docs/examples/batch_convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/batch_convert.py b/docs/examples/batch_convert.py index 6c12ef1..fd68e62 100644 --- a/docs/examples/batch_convert.py +++ b/docs/examples/batch_convert.py @@ -154,7 +154,7 @@ def main(): conv_results = doc_converter.convert_all( input_doc_paths, - raises_on_error=True, # to let conversion run through all and examine results at the end + raises_on_error=False, # to let conversion run through all and examine results at the end ) success_count, partial_success_count, failure_count = export_documents( conv_results, output_dir=Path("scratch")