Skip to content

Commit

Permalink
Correct typing for docx-wrangling
Browse files Browse the repository at this point in the history
  • Loading branch information
nonprofittechy committed Feb 10, 2024
1 parent 4b85d43 commit 1598bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docassemble/ALDashboard/docx_wrangling.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def add_paragraph_before(paragraph, text):

def update_docx(
document: Union[docx.Document, str],
modified_runs: List[List[int, int, str, int]]
modified_runs: List[Tuple[int, int, str, int]]
) -> docx.Document:
"""Update the document with modified runs.
Expand Down

0 comments on commit 1598bad

Please sign in to comment.