Skip to content

Commit 8ddff25

Browse files
committed
v0.0.12 release
Signed-off-by: Tim Schopf <[email protected]>
1 parent c3bc123 commit 8ddff25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keyphrase_vectorizers/keyphrase_count_vectorizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,4 +505,4 @@ def _clean_bow(self) -> None:
505505
x = np.array(self.keyphrases)
506506
mask = np.full(len(self.keyphrases), True, dtype=bool)
507507
mask[indices] = False
508-
self.keyphrases = list(x[~mask])
508+
self.keyphrases = list(x[~mask])

0 commit comments

Comments
 (0)