diff --git a/bentoml_cli/bentos.py b/bentoml_cli/bentos.py index f00b32bfb7..551652b33a 100644 --- a/bentoml_cli/bentos.py +++ b/bentoml_cli/bentos.py @@ -92,12 +92,7 @@ def get(bento_tag: str, output: str) -> None: # type: ignore (not accessed) type=click.Choice(["json", "yaml", "table"]), default="table", ) - @click.option( - "--no-trunc", - is_flag=False, - help="Don't truncate the output", - ) - def list_bentos(bento_name: str, output: str, no_trunc: bool) -> None: # type: ignore (not accessed) + def list_bentos(bento_name: str, output: str) -> None: # type: ignore (not accessed) """List Bentos in local store \b diff --git a/bentoml_cli/models.py b/bentoml_cli/models.py index c8e2b8aa97..adde121ee4 100644 --- a/bentoml_cli/models.py +++ b/bentoml_cli/models.py @@ -92,12 +92,7 @@ def get(model_tag: str, output: str) -> None: # type: ignore (not accessed) type=click.Choice(["json", "yaml", "table"]), default="table", ) - @click.option( - "--no-trunc", - is_flag=False, - help="Don't truncate the output", - ) - def list_models(model_name: str, output: str, no_trunc: bool) -> None: # type: ignore (not accessed) + def list_models(model_name: str, output: str) -> None: # type: ignore (not accessed) """List Models in local store \b