Skip to content

Commit 18f6504

Browse files
committed
ci: Fix warning
1 parent eec7fb4 commit 18f6504

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mkdocstrings/_internal/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def run(self, parent: Element, blocks: MutableSequence[str]) -> None:
125125
heading_level = match["heading"].count("#")
126126
_logger.debug("Matched '::: %s'", identifier)
127127

128-
html, handler, data = self._process_block(identifier, block, heading_level)
128+
html, handler, _ = self._process_block(identifier, block, heading_level)
129129
el = Element("div", {"class": "mkdocstrings"})
130130
# The final HTML is inserted as opaque to subsequent processing, and only revealed at the end.
131131
el.text = self.md.htmlStash.store(html)

0 commit comments

Comments
 (0)