From f90f54ccc50dc2c2e364a952ab41fadfffddb285 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 3 Feb 2025 07:01:29 +0100 Subject: [PATCH] Reformatted with latest black. --- src/antsibull_docs_parser/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/antsibull_docs_parser/parser.py b/src/antsibull_docs_parser/parser.py index b192baa..5beb68d 100644 --- a/src/antsibull_docs_parser/parser.py +++ b/src/antsibull_docs_parser/parser.py @@ -23,7 +23,7 @@ _WHITESPACE = re.compile(r"([\s]+)") _DANGEROUS_WS = re.compile(r"[\t\n\r]") _SPACES_TO_KEEP = re.compile( - "([\u00A0\u202F\u2007\u2060\u200B\u200C\u200D\uFEFF]+)", flags=re.UNICODE + "([\u00a0\u202f\u2007\u2060\u200b\u200c\u200d\ufeff]+)", flags=re.UNICODE )