Skip to content

Commit 9214ee7

Browse files
committed
Fix typing.
1 parent 6e3cff9 commit 9214ee7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/antsibull_docutils/markdown.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,11 @@ def _add_label(self, label: str) -> None:
349349
# Node: paragraph
350350

351351
# pylint: disable-next=missing-function-docstring,unused-argument
352-
def visit_paragraph(self, node: nodes.section) -> None:
352+
def visit_paragraph(self, node: nodes.paragraph) -> None:
353353
self._context.top.ensure_double_newline()
354354

355355
# pylint: disable-next=missing-function-docstring,unused-argument
356-
def depart_paragraph(self, node: nodes.section) -> None:
356+
def depart_paragraph(self, node: nodes.paragraph) -> None:
357357
self._context.top.ensure_double_newline()
358358

359359
# Node: title

0 commit comments

Comments
 (0)