Skip to content

Commit

Permalink
Test adding default value
Browse files Browse the repository at this point in the history
Signed-off-by: Laura Couto <[email protected]>
  • Loading branch information
lrcouto committed Dec 17, 2024
1 parent 9bb3361 commit 10dbea5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kedro/framework/cli/starters.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,14 @@ def starter() -> None:
@click.option("--checkout", help=CHECKOUT_ARG_HELP)
@click.option("--directory", help=DIRECTORY_ARG_HELP)
@click.option("--tools", "-t", "selected_tools", help=TOOLS_ARG_HELP)
@click.option("--name", "-n", "project_name", help=NAME_ARG_HELP, prompt=NAME_PROMPT)
@click.option(
"--name",
"-n",
"project_name",
help=NAME_ARG_HELP,
prompt=NAME_PROMPT,
default="new-kedro-project",
)
@click.option("--example", "-e", "example_pipeline", help=EXAMPLE_ARG_HELP)
@click.option("--telemetry", "-tc", "telemetry_consent", help=TELEMETRY_ARG_HELP)
def new( # noqa: PLR0913
Expand Down

0 comments on commit 10dbea5

Please sign in to comment.