From 7142e6e825b47fa3d2926f5eb05ae81306c94b75 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kuczynski Date: Wed, 4 Dec 2024 17:31:07 +0100 Subject: [PATCH] This should work for super linter now --- Tests/Regression/Reporter/read_docx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Regression/Reporter/read_docx.py b/Tests/Regression/Reporter/read_docx.py index 14998f1ef..8891b94d0 100644 --- a/Tests/Regression/Reporter/read_docx.py +++ b/Tests/Regression/Reporter/read_docx.py @@ -186,7 +186,7 @@ def read_docx_file(docx_path: str, debug=False) -> dict: dict = {"Heading 1" = {"text" = ["line 1", "line 2", ...], "table" = [[row 1], [row 2], ...] }, ...} """ doc = Document(docx_path) - doc_data: dict[str, dict[str, list[str]]] = dict() + doc_data: dict[str, dict[str, list[str | list]]] = dict() current_heading_name = None