-
Notifications
You must be signed in to change notification settings - Fork 909
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
Investigate CLI inconsistencies #2014
Comments
Here are the CLI docs for |
TL;DR At the bottom InvestigationLooking at Kedro's cli commands, only run had enough flag options to introduce inconsistencies in the implementation. The primary inconsistency being that in the issue description: some command options allow the flag to be used several times in a command (where multiple=True), but not all. Where there is no The command options where
|
A special thanks to @amandakys, @AntonyMilneQB, @idanov and @merelcht for their contributions to this investigation! Following a discussion on 23/01/2023, we have agreed on the following changes to be made:
|
Closed in favour of follow-on actions |
Description
Our CLI has inconsistencies in how to call flags. For example: for
--node
you can add the optionmultiple=True
in click. But when calling--from-nodes
this isn't possible. So for these flags you either call--node node_1 --node node_2
or--from-nodes node_1, node_2
. Why not--from-nodes node_1 --from-nodes node_2
? At a glance this reads a bit weird though 🤔Bottomline, we should make the CLI more consistent and investigate what things we need to improve to get there.
Context
#1828
To do
The text was updated successfully, but these errors were encountered: