From 9780ac76deedbd896a4e078a255161c94787a9d6 Mon Sep 17 00:00:00 2001 From: Ward Van Driessche Date: Fri, 27 Feb 2026 17:04:03 +0100 Subject: [PATCH] fix(transformer.py): fpdf2 doesn't accept more than 1 positional arg --- src/robusta/core/sinks/transformer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/robusta/core/sinks/transformer.py b/src/robusta/core/sinks/transformer.py index 719912388..7d2daeb8c 100644 --- a/src/robusta/core/sinks/transformer.py +++ b/src/robusta/core/sinks/transformer.py @@ -296,4 +296,4 @@ def write_table(pdf: FPDF, rows: List[list[str]]): write_section_header(pdf, section_name) write_table(pdf, rows) - return FileBlock(f"{title}.pdf", pdf.output("", "S")) + return FileBlock(f"{title}.pdf", pdf.output())