From af61f3fe45f9c9f24f5a44e04a71fa58aa84e48e Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Wed, 21 Aug 2024 11:20:58 -0500 Subject: [PATCH] Suppress dumb mypy error --- KerbalStuff/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KerbalStuff/common.py b/KerbalStuff/common.py index 794c3caa..d470fd8f 100644 --- a/KerbalStuff/common.py +++ b/KerbalStuff/common.py @@ -47,7 +47,7 @@ def allow_iframe_attr(tagname: str, attrib: str, val: str) -> bool: 'iframe': allow_iframe_attr }, css_sanitizer=CSSSanitizer(), - filters=[bleach.linkifier.LinkifyFilter]) + filters=[bleach.linkifier.LinkifyFilter]) # type: ignore[list-item] def first_paragraphs(text: Optional[str]) -> str: