From 5f4a4aada0b70c709d0e064d3f7fb9fdec145339 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 20 Dec 2022 13:29:15 -0600 Subject: [PATCH] docs: don't add typer completion --- examples/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cli.py b/examples/cli.py index 9324527..42838c7 100755 --- a/examples/cli.py +++ b/examples/cli.py @@ -8,7 +8,7 @@ __import__("viv").activate("typer", "rich-click") # noqa import typer -app = typer.Typer() +app = typer.Typer(add_completion=False) @app.command()