diff options
-rw-r--r-- | fuzzycat/__main__.py | 1 | ||||
-rw-r--r-- | fuzzycat/verify.py | 11 |
2 files changed, 4 insertions, 8 deletions
diff --git a/fuzzycat/__main__.py b/fuzzycat/__main__.py index ab1727b..d9dbe9a 100644 --- a/fuzzycat/__main__.py +++ b/fuzzycat/__main__.py @@ -194,6 +194,7 @@ if __name__ == '__main__': format='%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s', datefmt='%Y-%m-%d %H:%M:%S') + # TODO: group flags sensibly parser = argparse.ArgumentParser(prog='fuzzycat', description=__doc__, usage='%(prog)s command [options]', diff --git a/fuzzycat/verify.py b/fuzzycat/verify.py index e9bbde9..6b0a448 100644 --- a/fuzzycat/verify.py +++ b/fuzzycat/verify.py @@ -97,14 +97,9 @@ Verify = collections.namedtuple("Verify", "status reason") class GroupVerifier: """ - Verifier. - - Within a group, we could have multiple sub clusters, e.g. - - > [AABAB] - - We would need to compare each possible pair and decide whether they are the - same. + Given an iterable (lines) from clustering step, run verification on every + pair of the cluster, e.g. a cluster of four elements will yield nCr(4, 2) = + 10 pairs. """ def __init__(self, iterable: collections.abc.Iterable, |