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 54a61f8 commit d11dfe7Copy full SHA for d11dfe7
src/llmling/cli/constants.py
@@ -1,19 +1,15 @@
1
from __future__ import annotations
2
3
import logging
4
-from typing import TYPE_CHECKING
5
+import click
6
+import click.shell_completion # noqa: TC002
7
import typer as t
8
9
from llmling.config.store import config_store
10
from llmling.core.log import setup_logging
11
12
-if TYPE_CHECKING:
13
- import click
14
- import click.shell_completion
15
-
16
17
# Help texts
18
CONFIG_HELP = "Path to config file or name of stored config"
19
OUTPUT_FORMAT_HELP = "Output format. One of: text, json, yaml"
0 commit comments