From 6f8020e30d755e9af1b91b1705164fc903944536 Mon Sep 17 00:00:00 2001 From: Daniel Breitlauch Date: Fri, 1 Apr 2022 18:26:01 +0200 Subject: [PATCH] removing transformation to lowercase since it is not needed at all. --- src/documents/matching.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/documents/matching.py b/src/documents/matching.py index 523ee028e..b87fa0461 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -60,15 +60,14 @@ def match_tags(document, classifier): def matches(matching_model, document): search_kwargs = {} + document_content = document.content + # Check that match is not empty if matching_model.match.strip() == "": return False if matching_model.is_insensitive: search_kwargs = {"flags": re.IGNORECASE} - document_content = document.content.lower() - else: - document_content = document.content if matching_model.matching_algorithm == MatchingModel.MATCH_ALL: for word in _split_match(matching_model):