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 f4ffef0 commit 34470b6Copy full SHA for 34470b6
sphinx_click/ext.py
@@ -197,10 +197,6 @@ def _format_option(
197
def _format_options(ctx: click.Context) -> ty.Generator[str, None, None]:
198
"""Format all `click.Option` for a `click.Command`."""
199
# the hidden attribute is part of click 7.x only hence use of getattr
200
- print(ctx.command.params)
201
- for param in ctx.command.params:
202
- print(type(param))
203
- print(isinstance(param, click.Option))
204
params = [
205
param
206
for param in ctx.command.params
0 commit comments