Skip to content

Commit

Permalink
Remove errant prints
Browse files Browse the repository at this point in the history
Whoops.

Signed-off-by: Stephen Finucane <stephen@that.guru>
  • Loading branch information
stephenfin committed May 15, 2024
1 parent f4ffef0 commit 34470b6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions sphinx_click/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,6 @@ def _format_option(
def _format_options(ctx: click.Context) -> ty.Generator[str, None, None]:
"""Format all `click.Option` for a `click.Command`."""
# the hidden attribute is part of click 7.x only hence use of getattr
print(ctx.command.params)
for param in ctx.command.params:
print(type(param))
print(isinstance(param, click.Option))
params = [
param
for param in ctx.command.params
Expand Down

0 comments on commit 34470b6

Please sign in to comment.