aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2023-04-21 16:40:59 +0200
committerJ08nY2023-04-21 16:40:59 +0200
commit98163ce1946e8e4b61e10037eb2e774c129bc282 (patch)
tree0cfdfeeb0271928dbd7d2d8ed6f6546e6cefe968
parent6b892c5e87ac130270f24c7de7dd6f1bac51ab6b (diff)
downloadsec-certs-98163ce1946e8e4b61e10037eb2e774c129bc282.tar.gz
sec-certs-98163ce1946e8e4b61e10037eb2e774c129bc282.tar.zst
sec-certs-98163ce1946e8e4b61e10037eb2e774c129bc282.zip
Fix black issue.
-rw-r--r--src/sec_certs/model/cpe_matching.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sec_certs/model/cpe_matching.py b/src/sec_certs/model/cpe_matching.py
index 754ba7a9..c331a3b9 100644
--- a/src/sec_certs/model/cpe_matching.py
+++ b/src/sec_certs/model/cpe_matching.py
@@ -34,7 +34,6 @@ class CPEClassifier:
vendors_: set[str]
def __init__(self, match_threshold: int = 80, n_max_matches: int = 10, spacy_model_to_use: str = "en_core_web_sm"):
-
self.match_threshold = match_threshold
self.n_max_matches = n_max_matches
self.nlp = load_spacy_model(spacy_model_to_use)