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 | 64b2715796da94415461b740f8cc5663944632ee (patch) | |
tree | e6f887099df16ece834e0e7189d46ff4003b7c95 /continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py | |
parent | 114015518f41ed4eb00308f4bf72b89133091b9f (diff) | |
download | sncontinue-64b2715796da94415461b740f8cc5663944632ee.tar.gz sncontinue-64b2715796da94415461b740f8cc5663944632ee.tar.bz2 sncontinue-64b2715796da94415461b740f8cc5663944632ee.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( |