diff options
| author | Ty Dunn <ty@tydunn.com> | 2023-06-16 00:20:24 -0700 |
|---|---|---|
| committer | Ty Dunn <ty@tydunn.com> | 2023-06-16 00:20:24 -0700 |
| commit | 7f3fe0c6addc1180c6674cb29f1a6b15e944342d (patch) | |
| tree | 643d3b9258cd6ce2102705af9fafdbbee551a4db /continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py | |
| parent | 87beaf99ea0da8cad60740cca5f3f3187d2a20d1 (diff) | |
| download | sncontinue-7f3fe0c6addc1180c6674cb29f1a6b15e944342d.tar.gz sncontinue-7f3fe0c6addc1180c6674cb29f1a6b15e944342d.tar.bz2 sncontinue-7f3fe0c6addc1180c6674cb29f1a6b15e944342d.zip | |
fixing problems with dlt create recipe
Diffstat (limited to 'continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py')
| -rw-r--r-- | continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py index 3fba1112..1a756a76 100644 --- a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py +++ b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py @@ -49,7 +49,7 @@ class SetupPipelineStep(Step): - `pip install -r requirements.txt`: Install the Python dependencies for the pipeline"""), name="Setup Python environment") # editing the resource function to call the requested API - resource_function_range = Range.from_shorthand(15, 0, 29, 0) + resource_function_range = Range.from_shorthand(15, 0, 30, 0) await sdk.ide.highlightCode(RangeInFile(filepath=os.path.join(await sdk.ide.getWorkspaceDirectory(), filename), range=resource_function_range), "#ffa50033") # sdk.set_loading_message("Writing code to call the API...") @@ -64,7 +64,7 @@ class SetupPipelineStep(Step): # wait for user to put API key in secrets.toml await sdk.ide.setFileOpen(await sdk.ide.getWorkspaceDirectory() + "/.dlt/secrets.toml") - await sdk.wait_for_user_confirmation("If this service requires an API key, please add it to the `secrets.toml` file and then press `Continue`") + await sdk.wait_for_user_confirmation("If this service requires an API key, please add it to the `secrets.toml` file and then press `Continue`. Otherwise, type '/edit this API does not require an API key'") sdk.context.set("source_name", source_name) |
