diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-13 23:45:49 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-13 23:45:49 -0700 |
commit | 9100f116d0c28b231c0b746f60b8d59e00546456 (patch) | |
tree | 96d8828ac0666fdacebb4d42cd15c68dbea4a1f3 /continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py | |
parent | 122b63daeec6cb35d401eccd660759e1745f6778 (diff) | |
download | sncontinue-9100f116d0c28b231c0b746f60b8d59e00546456.tar.gz sncontinue-9100f116d0c28b231c0b746f60b8d59e00546456.tar.bz2 sncontinue-9100f116d0c28b231c0b746f60b8d59e00546456.zip |
Small fixes
Diffstat (limited to 'continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py')
-rw-r--r-- | continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py index 88e27d2a..096b41c6 100644 --- a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py +++ b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py @@ -50,7 +50,7 @@ class SetupPipelineStep(Step): # editing the resource function to call the requested API resource_function_range = Range.from_shorthand(15, 0, 29, 0) - await sdk.ide.highlightCode(RangeInFile(filepath=os.path.join(await sdk.ide.getWorkspaceDirectory(), filename), range=resource_function_range)) + 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...") await sdk.edit_file( |