Skip to content

Commit

Permalink
Fix --version option for Kedro command (#4299)
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>
  • Loading branch information
ankatiyar authored Nov 6, 2024
1 parent 84b71b1 commit f1dec36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kedro/framework/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def global_groups(self) -> Sequence[click.MultiCommand]:
combines them with the built-in ones (eventually overriding the
built-in ones if they are redefined by plugins).
"""
return [*load_entry_points("global"), cli, global_commands]
return [cli, *load_entry_points("global"), global_commands]

@property
def project_groups(self) -> Sequence[click.MultiCommand]:
Expand Down

0 comments on commit f1dec36

Please sign in to comment.