From 4a6c0300921c81d496c2056bf47aed9d2b79e346 Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Mon, 27 Oct 2025 21:23:13 -0500 Subject: [PATCH] black --- django/utils/html.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/utils/html.py b/django/utils/html.py index 4f95522404..724bcc65f2 100644 --- a/django/utils/html.py +++ b/django/utils/html.py @@ -228,6 +228,7 @@ def strip_tags(value): strip_tags_depth += 1 return value + _strip_spaces_pattern = _lazy_re_compile(r">\s+<")