From cda7c5a8bef041ebb418b478eaa11049d8c3afa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cle=CC=81ment=20Doumouro?= Date: Wed, 12 Mar 2025 13:25:28 +0100 Subject: [PATCH] docs(examples): batch conversion doc `raises_on_error` 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 c21a4645..9ccf024e 100644 --- a/docs/examples/batch_convert.py +++ b/docs/examples/batch_convert.py @@ -139,7 +139,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")