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 cf3dc6d commit 171ce7fCopy full SHA for 171ce7f
services/dynamic-sidecar/src/simcore_service_dynamic_sidecar/cli.py
@@ -1,8 +1,8 @@
1
import asyncio
2
import json
3
import logging
4
+from collections.abc import AsyncIterator
5
from contextlib import asynccontextmanager
-from typing import AsyncIterator
6
7
import typer
8
from fastapi import FastAPI
@@ -17,7 +17,11 @@
17
from .modules.outputs import OutputsManager, setup_outputs
18
19
log = logging.getLogger(__name__)
20
-main = typer.Typer(name=PROJECT_NAME)
+main = typer.Typer(
21
+ name=PROJECT_NAME,
22
+ pretty_exceptions_enable=False,
23
+ pretty_exceptions_show_locals=False,
24
+)
25
26
27
main.command()(create_settings_command(settings_cls=ApplicationSettings, logger=log))
0 commit comments