From 19e22fc217a7f27ca648c1d842a427aa5c7e1a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Tue, 30 Apr 2024 12:18:07 +0100 Subject: [PATCH] chore: explicit options value --- examples/python/hello_pdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/hello_pdf.py b/examples/python/hello_pdf.py index f614090..d9722ad 100644 --- a/examples/python/hello_pdf.py +++ b/examples/python/hello_pdf.py @@ -22,5 +22,5 @@ npcolony.print_printer_base64( "Microsoft Print to PDF", HELLO_WORLD_B64, - dict(output_path=os.path.join(dir_name, "output.pdf")), + options=dict(output_path=os.path.join(dir_name, "output.pdf")), )