From 811fae0da258b841e65f857ac5615aaafaee115a Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Wed, 20 Apr 2022 16:36:58 +0800 Subject: [PATCH] [FIX] Small typo in CLI Signed-off-by: Benjamin Tan --- sdk/python/feast/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/python/feast/cli.py b/sdk/python/feast/cli.py index 7dc8e19859..80cd1844b6 100644 --- a/sdk/python/feast/cli.py +++ b/sdk/python/feast/cli.py @@ -113,7 +113,7 @@ def version(): @click.pass_context def endpoint(ctx: click.Context): """ - Display feature server endpoints. + Display feature server endpoints """ repo = ctx.obj["CHDIR"] cli_check_repo(repo) @@ -593,7 +593,7 @@ def serve_command(ctx: click.Context, host: str, port: int, no_access_log: bool) ) @click.pass_context def serve_transformations_command(ctx: click.Context, port: int): - """[Experimental] Start a the feature consumption server locally on a given port.""" + """[Experimental] Start a feature consumption server locally on a given port.""" repo = ctx.obj["CHDIR"] cli_check_repo(repo) store = FeatureStore(repo_path=str(repo))