Skip to content

Commit

Permalink
Make super-linter happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekKuczynski committed Dec 4, 2024
1 parent f3ff798 commit 9d2371e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Regression/Reporter/read_docx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]] = dict()
doc_data: dict[str, dict[str, list[str]]] = dict()

current_heading_name = None

Expand Down

0 comments on commit 9d2371e

Please sign in to comment.