From d6f0caec53f0396fccfc40866255d2f8a22003fe Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 27 Jan 2026 18:25:09 +0000 Subject: Remove key_blocks variable name in click.option. The key_blocks variable name is optional since the click option has the same name. --- pyhegp/pyhegp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhegp/pyhegp.py b/pyhegp/pyhegp.py index 2a49cbd..3348095 100644 --- a/pyhegp/pyhegp.py +++ b/pyhegp/pyhegp.py @@ -218,7 +218,7 @@ def pool_command(pooled_summary_file, summary_files): @click.argument("phenotype-file", type=click.File("r"), required=False) @click.option("--summary", "-s", "summary_file", type=click.File("rb"), help="Summary statistics file") -@click.option("--key-blocks", "-b", "key_blocks", +@click.option("--key-blocks", "-b", type=click.INT, help=("Number of blocks to use in the block diagonal key matrix" " [default: ceil(number_of_samples/1500)]")) -- cgit 1.4.1