From 23103c35ea285cc7e5b81ddee4734a58b97f9f4c Mon Sep 17 00:00:00 2001 From: Lydia Mennes Date: Thu, 18 Jan 2024 15:47:29 +0100 Subject: [PATCH] flake8 unhappy with comment --- docdeid/process/annotator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docdeid/process/annotator.py b/docdeid/process/annotator.py index 923224d..ac39c47 100644 --- a/docdeid/process/annotator.py +++ b/docdeid/process/annotator.py @@ -252,7 +252,9 @@ def __init__( self.pre_match_words: Optional[set[str]] = None self.matching_pipeline: Optional[list[StringModifier]] = None - # in case of a provided matching pipeline this goes wrong because it simply gets overwritten no warning nada + # in case of a provided matching pipeline this goes wrong + # because it simply gets overwritten no warning nada + # (will fix this in next PR) if pre_match_words is not None: self.pre_match_words = set(pre_match_words) self.matching_pipeline = [docdeid.str.LowercaseString()]