Skip to content

Commit

Permalink
remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Feb 2, 2024
1 parent 7aef361 commit e33b1b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions conda_forge_tick/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def invoke(self, ctx: click.Context):
"--online/--offline",
default=False,
help="Online: Use the GitHub API for accessing the dependency graph. This is useful for local testing. Note "
"however that any write operations will not be performed.",
"however that any write operations will not be performed. Important: The current working directory will be "
"used to cache JSON files. Local files will be used if they exist.",
)
@pass_context
def main(ctx: CliContext, debug: bool, dry_run: bool, online: bool) -> None:
Expand All @@ -76,7 +77,7 @@ def main(ctx: CliContext, debug: bool, dry_run: bool, online: bool) -> None:

@main.command(name="gather-all-feedstocks")
@pass_context
def gather_all_feedstocks(ctx: CliContext) -> None:
def gather_all_feedstocks() -> None:
from . import all_feedstocks

all_feedstocks.main()
Expand Down

0 comments on commit e33b1b5

Please sign in to comment.