From 98cdc29273a97ff25d2d5879f1394b319229b780 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Sat, 5 Nov 2022 20:12:57 +0200 Subject: [PATCH] update @ Sat 5 Nov 20:12:57 EET 2022 Signed-off-by: Ari Archer --- pyproject.toml | 2 +- scripts/blog.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e17ccff..2473150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.pyright] -pythonVersion = "3.10" +pythonVersion = "3.8" exclude = [ "venv", "**/node_modules", diff --git a/scripts/blog.py b/scripts/blog.py index 58a7953..502b6a7 100755 --- a/scripts/blog.py +++ b/scripts/blog.py @@ -326,7 +326,7 @@ class AddIDLinks(InlineProcessor): """Add support for <#ID> links""" def handleMatch( # pyright: ignore - self, match: RegexMatch[str], *_ + self, match: RegexMatch, *_ # pyright: ignore ) -> Tuple[etree.Element, Any, Any]: link: etree.Element = etree.Element("a")