From 931366f59b0b79a5db46cc1ab3b6e43affec94a3 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Wed, 28 Jun 2023 15:47:26 +0100 Subject: [PATCH] FIX: Typo in cli help (#2737) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * FIX: Typo in cli help Signed-off-by: debugger24 * Make GitPod works (#2688) * update base image Signed-off-by: Nok * update gitpod image and apt-get Signed-off-by: Nok * update docker Signed-off-by: Nok --------- Signed-off-by: Nok Signed-off-by: debugger24 * Remove `DeprecatedClassMeta` in favor of `getattr` (#2724) * Complete build requirements Signed-off-by: Juan Luis Cano Rodríguez * Add timeout for e2e process waiting Signed-off-by: Juan Luis Cano Rodríguez * Remove DeprecatedClassMeta in favor of getattr Fix https://github.com/kedro-org/kedro-starters/issues/137 Signed-off-by: Juan Luis Cano Rodríguez * Ignore deprecation warnings in our own code Signed-off-by: Juan Luis Cano Rodríguez --------- Signed-off-by: Juan Luis Cano Rodríguez Co-authored-by: Juan Luis Cano Rodríguez Co-authored-by: Deepyaman Datta Signed-off-by: debugger24 --------- Signed-off-by: debugger24 Signed-off-by: Nok Signed-off-by: Juan Luis Cano Rodríguez Co-authored-by: Nok Lam Chan 陳諾林 Co-authored-by: Deepyaman Datta Co-authored-by: Juan Luis Cano Rodríguez --- kedro/framework/cli/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kedro/framework/cli/project.py b/kedro/framework/cli/project.py index 73f4bfc912..034b460023 100644 --- a/kedro/framework/cli/project.py +++ b/kedro/framework/cli/project.py @@ -44,7 +44,7 @@ TO_NODES_HELP = """A list of node names which should be used as an end point.""" NODE_ARG_HELP = """Run only nodes with specified names.""" RUNNER_ARG_HELP = """Specify a runner that you want to run the pipeline with. -Available runners: 'SequentialRunner', 'ParallelRunner' and 'ThreadRun'.""" +Available runners: 'SequentialRunner', 'ParallelRunner' and 'ThreadRunner'.""" ASYNC_ARG_HELP = """Load and save node inputs and outputs asynchronously with threads. If not specified, load and save datasets synchronously.""" TAG_ARG_HELP = """Construct the pipeline using only nodes which have this tag