@@ -81,7 +81,7 @@ def bench(
8181 def wrapper (fn ):
8282 if not fn .__name__ .startswith (("compress_" , "decompress_" )):
8383 raise ValueError (
84- "benchmark function must begin with " " compress_ or decompress_"
84+ "benchmark function must begin with compress_ or decompress_"
8585 )
8686
8787 fn .mode = mode
@@ -789,18 +789,17 @@ def bench_content_dict_decompression(chunks, total_size, zparams):
789789 group .add_argument (
790790 "--stream" ,
791791 action = "store_true" ,
792- help = "Feed each input into a stream and emit " " flushed blocks" ,
792+ help = "Feed each input into a stream and emit flushed blocks" ,
793793 )
794794 group .add_argument (
795795 "--content-dict" ,
796796 action = "store_true" ,
797- help = "Compress each input using the previous as a "
798- "content dictionary" ,
797+ help = "Compress each input using the previous as a content dictionary" ,
799798 )
800799 group .add_argument (
801800 "--discrete-dict" ,
802801 action = "store_true" ,
803- help = "Compress each input independently with a " " dictionary" ,
802+ help = "Compress each input independently with a dictionary" ,
804803 )
805804
806805 group = parser .add_argument_group ("Benchmark Selection" )
@@ -854,7 +853,7 @@ def bench_content_dict_decompression(chunks, total_size, zparams):
854853 group .add_argument (
855854 "--compress-threads" ,
856855 type = int ,
857- help = "Use multi-threaded compression with this many " " threads" ,
856+ help = "Use multi-threaded compression with this many threads" ,
858857 )
859858 group .add_argument (
860859 "--batch-threads" ,
@@ -885,7 +884,7 @@ def bench_content_dict_decompression(chunks, total_size, zparams):
885884 group .add_argument (
886885 "--dict-sample-limit" ,
887886 type = int ,
888- help = "limit how many samples are fed into dictionary " " training" ,
887+ help = "limit how many samples are fed into dictionary training" ,
889888 )
890889 group .add_argument (
891890 "--chunk-encoding" ,
@@ -897,7 +896,7 @@ def bench_content_dict_decompression(chunks, total_size, zparams):
897896 group .add_argument (
898897 "--split-input-size" ,
899898 type = int ,
900- help = "Split inputs into chunks so they are at most this " " many bytes" ,
899+ help = "Split inputs into chunks so they are at most this many bytes" ,
901900 )
902901
903902 parser .add_argument ("path" , metavar = "PATH" , nargs = "+" )
0 commit comments