Skip to content

Commit f05e045

Browse files
fix: lint
1 parent 284bec4 commit f05e045

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

test_unstructured/staging/test_base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -693,9 +693,7 @@ def test_create_file_from_elements_html():
693693
"""Test create_file_from_elements with format=html returns HTML."""
694694
elements = [Title("Page"), NarrativeText("Content")]
695695
# no_group_by_page=True so elements without page_number are included (default path skips them)
696-
content = base.create_file_from_elements(
697-
elements, format="html", no_group_by_page=True
698-
)
696+
content = base.create_file_from_elements(elements, format="html", no_group_by_page=True)
699697
assert "<!DOCTYPE html" in content
700698
assert "<body>" in content
701699
assert "Page" in content

0 commit comments

Comments
 (0)