aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzycat/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzycat/__main__.py')
-rw-r--r--fuzzycat/__main__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/fuzzycat/__main__.py b/fuzzycat/__main__.py
index 7845299..cd94f9c 100644
--- a/fuzzycat/__main__.py
+++ b/fuzzycat/__main__.py
@@ -218,7 +218,10 @@ if __name__ == '__main__':
sub_cluster = subparsers.add_parser('cluster', help='group entities', parents=[parser])
sub_cluster.set_defaults(func=run_cluster)
- sub_cluster.add_argument('-C', '--compress', action="store_true", help='compress intermediate results')
+ sub_cluster.add_argument('-C',
+ '--compress',
+ action="store_true",
+ help='compress intermediate results')
sub_cluster.add_argument('-f', '--files', default="-", help='input files')
sub_cluster.add_argument('--key-denylist', help='file path to key denylist')
sub_cluster.add_argument('--min-cluster-size',