Skip to content

Commit 595e932

Browse files
authored
Merge pull request #86 from strictdoc-project/Stanislaw/update_submodule
Bump version to 0.0.32
2 parents b062b01 + 26264b2 commit 595e932

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

html2pdf4doc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from pathlib import Path
33

4-
__version__ = "0.0.31"
4+
__version__ = "0.0.32"
55

66
PATH_TO_HTML2PDF4DOC_PY = os.path.join(
77
os.path.dirname(os.path.join(__file__)),

html2pdf4doc/html2pdf4doc_js/html2pdf4doc.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html2pdf4doc/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ def get_chrome_version() -> Optional[str]:
300300
f"html2pdf4doc: Error getting Google Chrome for Testing version: {e}"
301301
)
302302

303-
os_manager = OperationSystemManager(os_type=None) # type: ignore[no-untyped-call]
304-
version: str = os_manager.get_browser_version_from_os(ChromeType.GOOGLE) # type: ignore[no-untyped-call]
303+
os_manager = OperationSystemManager(os_type=None) # type: ignore[no-untyped-call,unused-ignore]
304+
version: str = os_manager.get_browser_version_from_os(ChromeType.GOOGLE) # type: ignore[no-untyped-call,unused-ignore]
305305
return version
306306

307307

@@ -356,7 +356,7 @@ def __init__(self, page_count: int):
356356
page_count: int = 0
357357
try:
358358
while True:
359-
logs = driver.get_log("browser") # type: ignore[no-untyped-call]
359+
logs = driver.get_log("browser") # type: ignore[no-untyped-call,unused-ignore]
360360
for entry_ in logs:
361361
if "[HTML2PDF4DOC] Total time:" in entry_["message"]:
362362
print("success: HTML2PDF4Doc completed its job.") # noqa: T201

submodules/html2pdf

Submodule html2pdf updated 105 files

tests/integration/40_sdoc_only_child_does_not_break_page_when_surrounded_by_text_nodes/test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
page2_text_normalized
2121
== """\
2222
1. Section 1
23-
Vivamus consectetur mollis varius. Quisque posuere venenatis nulla, sit amet
24-
pulvinar metus vestibulum sed. Sed at libero nec justo leo.
25-
StrictDoc Documentation Test document
23+
Vivam us consectetur m ollis varius. Quisque posuere venenatis nulla, sit am et
24+
pulvinar m etus vestibulum sed. Sed at libero nec justo leo.
25+
StrictDoc Docum entation Test document
2626
2025-12-21 3/4\
2727
"""
2828
), page2_text_normalized
@@ -35,8 +35,8 @@
3535
page3_text_normalized
3636
== """\
3737
2. Section 2
38-
Lorem ipsum dolor sit amet, c
39-
StrictDoc Documentation Test document
38+
L orem ipsum dolor sit am et, c
39+
StrictDoc Docum entation Test document
4040
2025-12-21 4/4\
4141
"""
4242
), page3_text_normalized

0 commit comments

Comments
 (0)