diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-12 19:32:39 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-12 19:32:39 +0100 |
commit | 7c1927dd2800069b74bbe2f561127122daa0870f (patch) | |
tree | 13bd5f27c3ccbbcaa39751fc27c13f5282e7940a | |
parent | 2b1c5407225c03e46ba4649ac2c7898e9ffa01ac (diff) | |
download | fuzzycat-7c1927dd2800069b74bbe2f561127122daa0870f.tar.gz fuzzycat-7c1927dd2800069b74bbe2f561127122daa0870f.zip |
wip: note on 'serde' overhead
-rw-r--r-- | fuzzycat/cluster.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index 440dbe9..97509e7 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -276,6 +276,7 @@ class Cluster: items = list(g) payload = [] for line in items: + # XXX: This is a bit too much "serde", get rid of this. fields = line.split("\t") if len(fields) < 3: continue |