From 0121582eded2a1f684992d52917bce8c0b9a4d69 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Aug 2021 16:24:53 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- myst_parser/parse_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myst_parser/parse_html.py b/myst_parser/parse_html.py index f5f32ad0..1922aaf3 100644 --- a/myst_parser/parse_html.py +++ b/myst_parser/parse_html.py @@ -343,7 +343,7 @@ def nest_vtag(self, name: str, attrs: dict): top.append(item) def nest_terminal(self, klass: Type[TerminalElement], data: str): - """ Nest the data onto the tree.""" + """Nest the data onto the tree.""" top = self.last() item = klass(data) top.append(item)