From 45a32d7a229ea9c27c50bbf396b025d17d1a0119 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sat, 7 Nov 2020 01:18:06 +0100 Subject: save a bit of space --- fuzzycat/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzycat/build.py b/fuzzycat/build.py index df38fec..687c17e 100644 --- a/fuzzycat/build.py +++ b/fuzzycat/build.py @@ -97,6 +97,6 @@ class NgramLookup: tokens = [tok for tok in word_tokenize(title.lower()) if tok not in self.stopwords] prefix = "-".join(tokens[:self.n]) suffix = "-".join(tokens[-self.n:]) - print("{}\t{}\t{}\t{}-{}".format(id, prefix, suffix, prefix, suffix)) + print("{}\t{}-{}".format(id, prefix, suffix)) except KeyError as exc: print("skipping doc w/o title: {} - {}".format(line, exc), file=sys.stderr) -- cgit v1.2.3