Skip to content

Commit e50d3de

Browse files
committed
chore: fix linter error
1 parent 3b0dab2 commit e50d3de

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

quartodoc/autosummary.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -596,10 +596,9 @@ def write_index(self, blueprint: layout.Layout):
596596
content = self.renderer.summarize(blueprint)
597597
_log.info(f"Writing index to directory: {self.dir}")
598598

599-
final = str(Blocks([
600-
Header(1, self.title, Attr(classes=["doc", "doc-index"])),
601-
content
602-
]))
599+
final = str(
600+
Blocks([Header(1, self.title, Attr(classes=["doc", "doc-index"])), content])
601+
)
603602

604603
p_index = Path(self.dir) / self.out_index
605604
p_index.parent.mkdir(exist_ok=True, parents=True)

0 commit comments

Comments
 (0)