From d2315e857e376bf9cb1c910ed833727236f45e69 Mon Sep 17 00:00:00 2001 From: neingeist Date: Tue, 21 Oct 2025 05:47:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20properly=20use=20click.command()?= =?UTF-8?q?=20decorator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chop-edges | 2 +- git-status-all | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chop-edges b/chop-edges index 7f418ac..63eb9dd 100755 --- a/chop-edges +++ b/chop-edges @@ -4,7 +4,7 @@ import subprocess from pathlib import Path -@click.command +@click.command() @click.option("--top", default=0) @click.option("--bottom", default=0) @click.option("--left", default=0) diff --git a/git-status-all b/git-status-all index 7aa8dea..feed037 100755 --- a/git-status-all +++ b/git-status-all @@ -39,7 +39,7 @@ def working_directory(directory: Path): os.chdir(saved_cwd) -@click.command +@click.command() @click.argument( "topdirs", nargs=-1, type=click.Path(exists=True, file_okay=False, path_type=Path) )