Skip to content

Commit 34470b6

Browse files
committed
Remove errant prints
Whoops. Signed-off-by: Stephen Finucane <stephen@that.guru>
1 parent f4ffef0 commit 34470b6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

sphinx_click/ext.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,6 @@ def _format_option(
197197
def _format_options(ctx: click.Context) -> ty.Generator[str, None, None]:
198198
"""Format all `click.Option` for a `click.Command`."""
199199
# 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))
204200
params = [
205201
param
206202
for param in ctx.command.params

0 commit comments

Comments
 (0)