diff --git a/flytekit/clis/sdk_in_container/run.py b/flytekit/clis/sdk_in_container/run.py index e2887ce51a..9f4effe3eb 100644 --- a/flytekit/clis/sdk_in_container/run.py +++ b/flytekit/clis/sdk_in_container/run.py @@ -242,7 +242,6 @@ class RunLevelParams(PyFlyteParams): required=False, type=int, default=50, - hidden=True, show_default=True, help="Use this to limit number of entities to fetch", ) @@ -661,14 +660,6 @@ def __init__(self, command_name: str): super().__init__( name=command_name, help=f"Retrieve {command_name} from a remote flyte instance and execute them.", - params=[ - click.Option( - ["--limit", "limit"], - help=f"Limit the number of {command_name}'s to retrieve.", - default=50, - show_default=True, - ) - ], ) self._command_name = command_name self._entities = []