From 374b88020763f29d53927710f6c82e8f01ca8ae2 Mon Sep 17 00:00:00 2001 From: Taras Pashkevych Date: Wed, 8 Apr 2026 19:34:18 +0200 Subject: [PATCH] fix(completions): enable type completions --- src/dualentry_cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dualentry_cli/main.py b/src/dualentry_cli/main.py index 214bc24..71e6a14 100644 --- a/src/dualentry_cli/main.py +++ b/src/dualentry_cli/main.py @@ -12,7 +12,7 @@ from dualentry_cli.commands.invoices import app as invoices_app from dualentry_cli.config import Config -app = typer.Typer(name="dualentry", help="DualEntry accounting CLI", no_args_is_help=True, cls=HelpfulGroup, add_completion=False) +app = typer.Typer(name="dualentry", help="DualEntry accounting CLI", no_args_is_help=True, cls=HelpfulGroup) auth_app = typer.Typer(help="Authentication commands", no_args_is_help=True, cls=HelpfulGroup) config_app = typer.Typer(help="Configuration commands", no_args_is_help=True, cls=HelpfulGroup) app.add_typer(auth_app, name="auth")