diff options
-rw-r--r-- | fuzzycat/cluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index 0db3eae..150e18e 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -151,7 +151,7 @@ class Cluster: try: id, key = keyfunc(json.loads(line)) print("{}\t{}".format(id, key), file=tf) - except (KeyError, ValueError) as exc: + except (KeyError, ValueError): counter["key_extraction_failed"] += 1 else: counter["key_ok"] += 1 |