From dd79dbbac90caaf0617a5046c84a2618e532980b Mon Sep 17 00:00:00 2001 From: Shuchu Han Date: Sat, 17 Feb 2024 22:30:13 -0500 Subject: [PATCH] fix: Fix typo as the cli does not support shortcut-f option. (#3954) * fix: Fix typo as the cli does not support shortcut-f option. Signed-off-by: Shuchu Han * fix: add -f option as a shortcut of feature-store-yaml. Signed-off-by: Shuchu Han --------- Signed-off-by: Shuchu Han --- sdk/python/feast/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/python/feast/cli.py b/sdk/python/feast/cli.py index 985c44b821..7ce8aaef2b 100644 --- a/sdk/python/feast/cli.py +++ b/sdk/python/feast/cli.py @@ -76,6 +76,7 @@ def format_options(self, ctx: click.Context, formatter: click.HelpFormatter): ) @click.option( "--feature-store-yaml", + "-f", help="Override the directory where the CLI should look for the feature_store.yaml file.", ) @click.pass_context