From 2edb56638cb182387a821588d19d38031213660b Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 23 Apr 2023 15:10:20 +0200 Subject: [PATCH] delete leftover line of code --- files/helpers/regex.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/files/helpers/regex.py b/files/helpers/regex.py index a1b2ec9921..fc801fab05 100644 --- a/files/helpers/regex.py +++ b/files/helpers/regex.py @@ -115,8 +115,6 @@ git_regex = re.compile("ref: (refs/.+)", flags=re.A) pronouns_regex = re.compile("([a-z]{1,5})/[a-z]{1,5}(/[a-z]{1,5})?", flags=re.A|re.I) -knowledgebase_page_regex = re.compile("[a-zA-Z0-9_\-]+", flags=re.A) - html_title_regex = re.compile("(.{1,200})", flags=re.I) def sub_matcher(match:re.Match, upper=False, replace_with:Union[dict[str, str], dict[str, List[str]]]=SLURS_FOR_REPLACING):