Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change to short names in config #3499

Merged
merged 12 commits into from
Jan 18, 2024
Prev Previous commit
Next Next commit
Update kedro/framework/cli/starters.py
Co-authored-by: Ahdra Merali <[email protected]>
Signed-off-by: Dmitry Sorokin <[email protected]>
  • Loading branch information
DimedS and AhdraMeraliQB authored Jan 17, 2024
commit 0564813a347b9c3670139dc86e470caf215a0c0d
2 changes: 1 addition & 1 deletion kedro/framework/cli/starters.py
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ def _validate_range(start: Any, end: Any) -> None:
sys.exit(1)
# safeguard to prevent passing of excessively large intervals that could cause freezing:
if int(end) > len(NUMBER_TO_TOOLS_NAME):
message = f"'{start}-{end}' is an invalid range for project tools.\n{end} is too large."
message = f"'{end}' is not a valid selection.\nPlease select from the available tools: 1, 2, 3, 4, 5, 6, 7."
click.secho(message, fg="red", err=True)
sys.exit(1)

Expand Down