From f1dec364057a3d77531022afb210dd025e82075a Mon Sep 17 00:00:00 2001 From: Ankita Katiyar <110245118+ankatiyar@users.noreply.github.com> Date: Wed, 6 Nov 2024 13:43:17 +0530 Subject: [PATCH] Fix --version option for Kedro command (#4299) Signed-off-by: Ankita Katiyar --- kedro/framework/cli/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kedro/framework/cli/cli.py b/kedro/framework/cli/cli.py index f5917e1b87..6ad4e24e97 100644 --- a/kedro/framework/cli/cli.py +++ b/kedro/framework/cli/cli.py @@ -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]: