From d70ba7e1a4d2150240d9eeca6ec828ddd2529373 Mon Sep 17 00:00:00 2001 From: Harshil Patel Date: Mon, 12 Jul 2021 17:16:57 +0100 Subject: [PATCH] Black --- nf_core/__main__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nf_core/__main__.py b/nf_core/__main__.py index 2981c807fd..096dcfea9f 100755 --- a/nf_core/__main__.py +++ b/nf_core/__main__.py @@ -422,9 +422,7 @@ def local(ctx, keywords, json, dir): @click.argument("tool", type=str, required=False, metavar=" or ") @click.option("-d", "--dir", type=click.Path(exists=True), default=".", help="Pipeline directory. Defaults to CWD") @click.option("-l", "--latest", is_flag=True, default=False, help="Install the latest version of the module") -@click.option( - "-f", "--force", is_flag=True, default=False, help="Force installation of module if it already exists" -) +@click.option("-f", "--force", is_flag=True, default=False, help="Force installation of module if it already exists") @click.option("-s", "--sha", type=str, metavar="", help="Install module at commit SHA") @click.option("-a", "--all", is_flag=True, default=False, help="Update all modules installed in pipeline") def install(ctx, tool, dir, latest, force, sha, all):