Skip to content

Commit

Permalink
fixed missing arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeizhou-ap committed Aug 28, 2024
1 parent c4eb05b commit bdaac43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/goose/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ def get_session_files() -> Dict[str, Path]:
return list_sorted_session_files(SESSIONS_PATH)

@click.group(
invoke_without_command=False,
invoke_without_command=True,
name="goose",
help="AI-powered tool to assist in solving a wide range of programming and operational tasks",)
@click.pass_context
def cli(_: click.Context) -> None:
def cli(_: click.Context, **kwargs: Dict) -> None:
pass

all_cli_group_options = load_plugins("goose.cli.group_option")
Expand Down

0 comments on commit bdaac43

Please sign in to comment.