summaryrefslogtreecommitdiff
path: root/continuedev/src
diff options
context:
space:
mode:
Diffstat (limited to 'continuedev/src')
-rw-r--r--continuedev/src/continuedev/plugins/steps/core/core.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/continuedev/src/continuedev/plugins/steps/core/core.py b/continuedev/src/continuedev/plugins/steps/core/core.py
index 4f144f32..8fa73f7c 100644
--- a/continuedev/src/continuedev/plugins/steps/core/core.py
+++ b/continuedev/src/continuedev/plugins/steps/core/core.py
@@ -820,14 +820,6 @@ Please output the code to be inserted at the cursor in order to fulfill the user
rif_dict[rif.filepath] = rif.contents
for rif in rif_with_contents:
- # If the file doesn't exist, ask them to save it first
- exists = await sdk.ide.fileExists(rif.filepath)
- if not exists:
- message = (
- f"The file {rif.filepath} does not exist. Please save it first."
- )
- raise ContinueCustomException(title=message, message=message)
-
await sdk.ide.setFileOpen(rif.filepath)
await sdk.ide.setSuggestionsLocked(rif.filepath, True)
await self.stream_rif(rif, sdk)