Skip to content

Commit

Permalink
Trying new solution for dict.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekKuczynski committed Dec 4, 2024
1 parent 42c4289 commit b35d88c
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[str | list[str]]]] = dict()
doc_data: dict = {}

current_heading_name = None

Expand Down

0 comments on commit b35d88c

Please sign in to comment.