From 74e8410af62c37f14f84616ae105a3e061c4e9fe Mon Sep 17 00:00:00 2001 From: jpk Date: Thu, 12 Jan 2023 15:54:31 +0100 Subject: [PATCH] removed unused ctx --- doxy/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doxy/cli.py b/doxy/cli.py index 465bc28..9066c96 100644 --- a/doxy/cli.py +++ b/doxy/cli.py @@ -24,8 +24,7 @@ def main(ctx): @click.command() -@click.pass_context -def list(ctx): +def list(): tree = Tree("[bold]Available Services") for service in services.find_services(Path(CONFIG.root_directory)): tree.add(service)