We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71602c8 commit 331ced0Copy full SHA for 331ced0
cycode/cli/app.py
@@ -3,6 +3,7 @@
3
4
import typer
5
from typer import rich_utils
6
+from typer._completion_classes import completion_init
7
from typer.completion import install_callback, show_callback
8
9
from cycode import __version__
@@ -23,6 +24,7 @@
23
24
# By default, it uses blue color which is too dark for some terminals
25
rich_utils.RICH_HELP = "Try [cyan]'{command_path} {help_option}'[/] for help."
26
27
+completion_init() # DO NOT TOUCH; this is required for the completion to work properly
28
29
_cycode_cli_docs = 'https://github.com/cycodehq/cycode-cli/blob/main/README.md'
30
_cycode_cli_epilog = f'[bold]Documentation:[/] [link={_cycode_cli_docs}]{_cycode_cli_docs}[/link]'
0 commit comments