From c4c7375d1003530ae42913697ef64d8a42eb3d43 Mon Sep 17 00:00:00 2001 From: ravi-kumar-pilla Date: Thu, 16 May 2024 17:33:31 -0500 Subject: [PATCH] format help text Signed-off-by: ravi-kumar-pilla --- package/kedro_viz/launchers/cli.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package/kedro_viz/launchers/cli.py b/package/kedro_viz/launchers/cli.py index af8909d603..37491cfce7 100644 --- a/package/kedro_viz/launchers/cli.py +++ b/package/kedro_viz/launchers/cli.py @@ -237,7 +237,7 @@ def run( @click.option( "--preview", default=False, - help="Enable/disable the preview of all datasets.", + help="Enable/disable preview for all the datasets.", ) def deploy(platform, endpoint, bucket_name, include_hooks, preview): """Deploy and host Kedro Viz on provided platform""" @@ -275,7 +275,7 @@ def deploy(platform, endpoint, bucket_name, include_hooks, preview): @click.option( "--preview", default=False, - help="Enable/disable the preview of all datasets.", + help="Enable/disable preview for all the datasets.", ) def build(include_hooks, preview): """Create build directory of local Kedro Viz instance with Kedro project data""" @@ -386,9 +386,7 @@ def load_and_deploy_viz( """Loads Kedro Project data, creates a deployer and deploys to a platform""" try: load_and_populate_data( - Path.cwd(), - include_hooks=include_hooks, - package_name=package_name, + Path.cwd(), include_hooks=include_hooks, package_name=package_name ) # Start the deployment