diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-05 22:18:04 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-05 22:18:04 +0100 |
commit | 4671d7cabfc5b1503a0924de57258cf1337515aa (patch) | |
tree | 7af7205007ed1e741dc148f97cf656701f46cf50 | |
parent | 451a1f8aec73938b1f86678c552e5cd0e75beeca (diff) | |
download | fuzzycat-4671d7cabfc5b1503a0924de57258cf1337515aa.tar.gz fuzzycat-4671d7cabfc5b1503a0924de57258cf1337515aa.zip |
drop continue
-rw-r--r-- | fuzzycat/cluster.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index 29b1003..0db3eae 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -153,7 +153,6 @@ class Cluster: print("{}\t{}".format(id, key), file=tf) except (KeyError, ValueError) as exc: counter["key_extraction_failed"] += 1 - continue else: counter["key_ok"] += 1 sbc = sort_by_column(tf.name, opts='-k 2', prefix=self.prefix, tmpdir=self.tmpdir) |