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 1a14087 commit 90f6567Copy full SHA for 90f6567
python/cocoindex/cli.py
@@ -84,9 +84,7 @@ def _load_user_app(app_target: str) -> None:
84
try:
85
load_user_app(app_target)
86
except UserAppLoaderError as e:
87
- raise click.ClickException(
88
- f"Failed to load APP_TARGET '{app_target}': {e}"
89
- ) from e
+ raise ValueError(f"Failed to load APP_TARGET '{app_target}'") from e
90
91
add_user_app(app_target)
92
0 commit comments