From 24b347507a17c1804a6d926466d8ee139b67c8fe Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 22 Sep 2021 13:41:32 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- scripts/update-plugin-list.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/update-plugin-list.py b/scripts/update-plugin-list.py index 596952b20..933d2482a 100644 --- a/scripts/update-plugin-list.py +++ b/scripts/update-plugin-list.py @@ -30,8 +30,7 @@ def escape_rst(text: str) -> str: """Rudimentary attempt to escape special RST characters to appear as plain text.""" text = ( - text - .replace("*", "\\*") + text.replace("*", "\\*") .replace("<", "\\<") .replace(">", "\\>") .replace("`", "\\`")