Skip to content

Commit

Permalink
Make super-linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekKuczynski committed Dec 4, 2024
1 parent 4ec0bb7 commit f3ff798
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 = {}
doc_data: dict[str, dict[str, list]] = dict()

current_heading_name = None

Expand Down

0 comments on commit f3ff798

Please sign in to comment.