From 7d384adb4a27652e3bf6bcbef11a1e0e9709b9eb Mon Sep 17 00:00:00 2001 From: Manuel Reinhardt Date: Wed, 7 Feb 2024 16:01:18 +0100 Subject: [PATCH] Short report: No icon for skipped risks syslabcom/scrum#1852 --- src/euphorie/client/docx/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/euphorie/client/docx/compiler.py b/src/euphorie/client/docx/compiler.py index 7eccf040f..ad3dedbcf 100644 --- a/src/euphorie/client/docx/compiler.py +++ b/src/euphorie/client/docx/compiler.py @@ -1016,7 +1016,7 @@ def compile(self, data): class DocxCompilerShort(DocxCompilerFullTable): _base_filename = "oira_short.docx" - justifiable_map = {"yes": "✅", "no": "❌", "postponed": "?", None: "⧁"} + justifiable_map = {"yes": "✅", "no": "❌", "postponed": "?"} justifiable_font = {"postponed": {"color": RGBColor(0xCC, 0xCC, 0x0), "bold": True}} def set_answer_font(self, answer, cell):