Skip to content

Commit

Permalink
make click arguments more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Nov 25, 2024
1 parent 7a2c238 commit 0a46315
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conda_forge_tick/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ def make_graph(
@click.argument(
"package",
required=False,
default=None,
type=str,
)
@pass_context
def update_upstream_versions(
Expand All @@ -154,6 +156,8 @@ def update_upstream_versions(
@click.argument(
"package",
required=False,
default=None,
type=str,
)
@pass_context
def auto_tick(ctx: CliContext, package: str | None) -> None:
Expand Down

0 comments on commit 0a46315

Please sign in to comment.